Page 1 of 1

Email to multiple recipients

Posted: Fri Aug 24, 2012 3:20 am
by beek
Hi there,

Need some advise here. I would like to send some email notifications from TM1. I have downloaded blat, and managed to send email successfully using blat (creating a TI, which will be called by user using button) to trigger the email sending.
I'm getting the recipient address will be captured as the parameter of the TI. When I input multiple recipients like , abc@yahoo.com,xyz@yahoo.com, the email only gets sent to abc@yahoo.com.
I asciiout the parameter that is captured by the TI, I then realised that the TI process gets only parameter abc@yahoo.com. Whatever after the comma is not captured.
Any idea what is the limitation on the string size of TI paramater can accept?
Or if you have any other way of handling the above?

Appreciate your input.

Thank you.

Re: Email to multiple recipients

Posted: Fri Aug 24, 2012 7:47 am
by tomok
Try separating the email addresses by semi-colons (;) instead of commas. Don't know if it it will worl but it's worth a shot.

Re: Email to multiple recipients

Posted: Fri Aug 24, 2012 8:04 am
by beek
Hi tomok,

Thanks for your suggestion. Yes, TI parameter is able to accept the seperator(;). But blat doesn't.. Anyway, I can put some code to convert the (;) to (,) in the TI process now, so to send to multiple recipients :D