Add multiple e mail address to office 365 distribution group

To add multiple email addresses to an Office 365 distribution group, you can follow these steps:

Method 1: Using the Office 365 Admin Center

  1. Sign in to the Office 365 Admin Center with your admin credentials.
  2. Go to Groups > Distribution groups.
  3. Find the distribution group you want to add members to and click on it.
  4. Click on the Members tab.
  5. Click on Add members.
  6. Enter the email addresses you want to add, separated by semicolons (;). For example: [email protected];[email protected];[email protected].
  7. Click Add.

Method 2: Using PowerShell

  1. Open PowerShell and connect to your Office 365 tenant using the following command: Connect-AzureAD
  2. Run the following command to add multiple members to a distribution group: Add-DistributionGroupMember -Identity <DistributionGroupName> -Members @("[email protected]", "[email protected]", "[email protected]")
  3. Replace <DistributionGroupName> with the name of your distribution group.

Method 3: Using the Exchange Admin Center

  1. Sign in to the Exchange Admin Center with your admin credentials.
  2. Go to Recipients > Distribution groups.
  3. Find the distribution group you want to add members to and click on it.
  4. Click on the Members tab.
  5. Click on Add members.
  6. Enter the email addresses you want to add, separated by semicolons (;). For example: [email protected];[email protected];[email protected].
  7. Click Add.

Note: Make sure you have the necessary permissions to add members to the distribution group. Additionally, if you're using Method 2 or Method 3, you may need to specify the domain name (e.g. @example.com) if the email addresses are not in the same domain as the distribution group.