There are correct address and wrong address like below
recipients = curl_slist_append(recipients, "[email protected]");
recipients = curl_slist_append(recipients, "[email protected]");
I tried to send email. but failed.
< 250 2.1.5 <[email protected]>... Recipient ok
> RCPT TO:<[email protected]>
< 550 5.1.1 RUSR 111.222.111.222: No such user: <[email protected]>
* RCPT failed: 550
> QUIT
< 221 2.0.0
success for sending email to [email protected] address
7.59.0
osx 10.13.4
This is unfortunately a known bug, already mentioned here https://curl.haxx.se/docs/knownbugs.html#SMTP_to_multiple_recipients
Feel free to work on a fix!
Most helpful comment
This is unfortunately a known bug, already mentioned here https://curl.haxx.se/docs/knownbugs.html#SMTP_to_multiple_recipients
Feel free to work on a fix!