MAILTO limits
Posted: Mon Dec 22, 2014 4:43 pm
Hello,
I usually write the following code to write an email to multiple recipients:
Now my tRecords variable contains a lot of address and sometime I get the following error: can't open file.
So I realized that there is a limit of addresses that confuse Livecode and it interprets the URL like a file, instead of launching my email client. Unfortunately I can't understand what is this limit, because it isn't a fixed number of emails, neither a number of chars of tRecords.
Sometime I get the error over 80 emails, sometime I get the error over 100 emails, I can't find a rule.
Can you help me?
I usually write the following code to write an email to multiple recipients:
Code: Select all
put "me@livecode.com,you@livecode.com,he@livecode.com" into tRecords
launch URL "mailto:myemail@livecode.com?bcc=" & tRecords

So I realized that there is a limit of addresses that confuse Livecode and it interprets the URL like a file, instead of launching my email client. Unfortunately I can't understand what is this limit, because it isn't a fixed number of emails, neither a number of chars of tRecords.
Sometime I get the error over 80 emails, sometime I get the error over 100 emails, I can't find a rule.
Can you help me?