Page 1 of 1

Notification to Multiple Recipients

Posted: Thu Jun 19, 2008 5:10 am
by skp
Hi,

I have a requirement to send e-mail to TWO Recipients through Notification Activity.If i pass two e-mail id's seprated by semi-colon[;]none of the recipients were receving e-mail.Is there any way to send mails to both with single Notification Activity.

Regards
Kishore

Posted: Thu Jun 19, 2008 5:58 am
by chulett
Sure, and the conversations on the subject are out there.

You need to determine delimiter does work on your system. It could be a space, a comma, a semi-colon... one of those should work. Or a combination, for example you may need a space after the comma or you may specifically need to exclude the space.

Code: Select all

Name1@wherever.com,Name2@wherever.com
Name1@wherever.com, Name2@wherever.com
Name1@wherever.com Name2@wherever.com
One of those should work for ya, I reck'n. :wink:

Posted: Thu Jun 19, 2008 9:23 am
by josh.guffey
Create a User Defined Environment Variable with the 2 email addresses and place that variable in the Recipients email address: field in the Notification Activity. In our shop we have these addresses seperated by a ;

Hope this helps