如何使用std.net.curl发送电子邮件?

时间:2015-05-17 17:18:59

标签: email smtp d

我尝试使用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();

0 个答案:

没有答案