There is another question:
When I use addCc as follow, it returns no errors and never send mails to these CC receipients:
Code: Select all
$mailer->addCc("Name1" <email@address.com>);
$mailer->addCc("Name2" <email2@address.com>);
$mailer->addCc("Name3" <email3@address.com>);
But when I changed to follow, it works:
Code: Select all
$mailer->addCc('email@address.com');
$mailer->addCc('email2@address.com');
$mailer->addCc('email3@address.com');
Any hints?
Just a suggestion: The online documents should have at least one example on how to correctly code them. The information provided there is not really friendly to all people.
ps: I noted about this dev forum from your swiftmailer webpage. Thanks for the link.
