我尝试使用http://dlang.org/phobos/std_net_curl.html#.SMTP
中的示例(使用我的登录和传递)但每次我收到错误:std.net.curl.CurlException@std\net\curl.d(3691): Failed sending data to the peer on handle 7F6D08
。
怎么了?我试图指定端口(465),但它没有帮助。
import std.net.curl;
// Send an email with SMTPS
auto smtp = SMTP("smtps://smtp.gmail.com");
smtp.setAuthentication("from.addr@gmail.com", "password");
smtp.mailTo = ["<to.addr@gmail.com>"];
smtp.mailFrom = "<from.addr@gmail.com>";
smtp.message = "Example Message";
smtp.perform();