Does JMail accepts delimiter(;) or comma(,) as a separator between different email address like CDO.Message.
For example, we can write,
Mail.To="[email protected],[email protected]" in CDO.Message.
Does the same is valid for JMAIL like the one below.
jMail.AddRecipient ("[email protected],[email protected]")
I know we can add multiple recipients by calling the AddRecipient again and again but my question is can we do it in a single line like in CDO.Message?