Welcome to ProjeQtOr new Forum. We migrated old forum to the new website.
You will find all your posts here, with your usual account.
Just one point : you’ll have to reinitialize your password. Use “Lost password” feature.
Handling for multiple addresses must be included and exploded from the $to string and looped.
With the current code, authentication is working, but your string "," delimited cannot be used with at least our provider Sendgrid.
Fix for this is simple.
++ // Fix $To Formatting for SMTP clients
++ $toArray = explode(",", $to);
++forEach ($toArray as &$to) {
LINE671: $mail=new Mail();
LINE843: $mail->save();
++ } //ENDING FOR EACH STATEMENT
return $resultMail;
You email provider do not allow mutltiple receiver of one mail ?
Strange...
Are you sure there is not another separation char that should work ?