Can you add multiple emails on mail ip

Yes, you can add multiple emails to a Mailgun IP address. Here are the steps:

Using the Mailgun Web Interface:

  1. Log in to your Mailgun account and go to the "Domains" tab.
  2. Click on the domain you want to add multiple emails to.
  3. Click on the "Settings" tab.
  4. Scroll down to the "SMTP" section.
  5. Click on the "Add SMTP User" button.
  6. Enter the email address you want to add, along with a password and any other required information.
  7. Repeat steps 5-6 for each additional email address you want to add.

Using the Mailgun API:

  1. Make a POST request to the https://api.mailgun.net/v3/<your-domain>.mailgun.org/users endpoint, replacing <your-domain> with your actual domain name.

  2. In the request body, include the following JSON data:

    {
    "username": "<email-address>",
    "password": "<password>",
    "role": "member"
    }

    Replace <email-address> with the email address you want to add, and <password> with a password for that email address.

  3. Repeat step 2 for each additional email address you want to add.

Using the Mailgun Command-Line Tool:

  1. Install the Mailgun command-line tool using npm: npm install mailgun

  2. Run the following command:

    mailgun user add <your-domain> <email-address> <password>

    Replace <your-domain> with your actual domain name, <email-address> with the email address you want to add, and <password> with a password for that email address.

  3. Repeat step 2 for each additional email address you want to add.

Once you've added multiple emails to your Mailgun IP address, you can use the same IP address to send emails from any of those email addresses.