Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello,
In one of my applications, I integrated a button that creates a mail with a list of users' email thanks to the navigation function : 'mailto'&users_email
However, if the number of email adress is to great, i noticed that the button doesn't do any actions (it does not create the mail).
My supposition is that there is a limit to the number of characters, just as in a table cell, but I didn't manage to confirm that.
So i wondered if it really is that, and if no, then what is the reason ? or if yes, what is that limit ?
Thank you in advance for your help.
Hi ,
you can create variable like this
SET vEmailTo = 'vikas@gmail.com;xyz@gmail.com;pqr@gmail.com';
and use this variable to send mail.
Vikas