Skip to main content
Cadet | Tier 2
February 9, 2022
Question

I have multiple email IDs in one list. How do I send a single email to all the recipients in that list

  • February 9, 2022
  • 7 replies
  • 378 views
I have multiple email IDs in one list. How do I send a single email to all the recipients in that list

    7 replies

    Navigator | Tier 3
    February 10, 2022

    Hi @Adityaganesh Srinivasan​ 

     

    append the email IDs in a string variable with a comma separator and assign it to the "to address" field.

     

    Example : user1@email.com,user2@email.com,user3@email.com

     

     

    Ashwin A.K
    Navigator | Tier 3
    February 10, 2022

    Hi @Adityaganesh Srinivasan​ ,

     

    If your email addresses are inside a List Variable, use the List Join Items: Delimiter -> ; and it will combine your list items into a string separated by semi-colons.

     

    image 

    Kind Regards,

    Ashwin A.K

    Blogs at TheCodingTheory - https://www.thecodingtheory.com
    Pathfinder Advocate | Tier 6
    February 10, 2022

    Hi @Ashwin A.K​ 

     

    Would it work too if delimiter was "," instead of ";" ? as i remember, that both work if i put , or ;

    Thanks

    Pathfinder Advocate | Tier 6
    February 10, 2022

    Hi @Arvind Kotaru​ 

    I just checked, i wrote "," between mails in Send:Mail , to Address and CC parts

    and it accepts comma

    Navigator | Tier 3
    February 10, 2022

    @Semih Öztürk​ Only accepts semicolon (;) as a valid separator for any email server.

    Navigator | Tier 3
    February 10, 2022

    It more seems like AA is converting a comma (,) to a semicolon (;) while processing it, and that is good for us!

    Pathfinder Advocate | Tier 6
    February 10, 2022

    I understand, thanks for the reply. I was using , and ; but ill try to use semicolon if thats better way. I wasnt paying attention to it before