This commit is contained in:
Adam D. Ruppe 2020-07-06 10:55:20 -04:00
parent 09bdcb230b
commit 89d53a071f
1 changed files with 13 additions and 1 deletions

14
email.d
View File

@ -267,7 +267,19 @@ class EmailMessage {
smtp.verifyHost = false;
smtp.verifyPeer = false;
// smtp.verbose = true;
//smtp.verbose = true;
{
// std.net.curl doesn't work well with STARTTLS if you don't
// put smtps://... and if you do, it errors if you can't start
// with a TLS connection from the beginning.
// This change allows ssl if it can.
import std.net.curl;
import etc.c.curl;
smtp.handle.set(CurlOption.use_ssl, CurlUseSSL.tryssl);
}
if(mailServer.username.length)
smtp.setAuthentication(mailServer.username, mailServer.password);
const(char)[][] allRecipients = cast(const(char)[][]) (to ~ cc ~ bcc); // WTF cast