I am unsure if this is a bug or a wish.
I use variables to define to wich people I need to send emails. Here is my problem, it is very specific to this configuration.
Sending email through local exchange server
Reicipients is two adresses, one of wich is blocked by exchange from the outside
Sending email fails if I specify the two adresses separated by a ";".
Sending email to multple adresses that are not blocked works.
The only way I found for making this work is to load each individual adresses manually (not an option for our production version)
The other way to go around this is to take the variable into a new txt file and then load this file as the recipients.
So my bug/wish would be to be able to send emails to local adresses specified in a variable separated by ";" throught local exchange server.
Thank you. Feel free to ask for more information, this situation is very, very specific.
Hi,
The action wasn’t designed to take the recipients as a list of addresses separated by a semi-colon, but I’ve added it to the request list for FinalBuilder 7. As a workaround in the current version, you can set the send mode to ‘Individual’ and either:
- Write the variable to a file (like you have)
- Use a List Iterator with the delimiter set to ‘;’ and call the action multiple times (not optimal but shouldn’t make much difference with a small list).
- Use some script Paul.
I'm having trouble find a split function trhat actually works. I tried your script asis and also the Split() function but with no luck.
I will resolve on managing the file to load all my recipients.
Thank you for the solutions.
Hi,
> I tried your script asis and also the Split() function but with no luck.
Sorry, I should of mentioned that the script expects a FinalBuilder variable defined named ‘Recipients’ that contains a string with the list of recipients separated by a semi-colon.
Regards,
Paul.
-_-; hehe.
I will try this solution as it seemed to work pretty well if it has not have been of that Recipients var.
Thanks.