我是C#的新手,我正在尝试从我正在开发的桌面程序发送电子邮件。这是我正在使用的代码,但我一直收到以下错误:
System.Net.Mail.MailMessage message = new System.Net.Mail.MailMessage();
message.To.Add("thesma@gmail.com");
message.Subject = "This is the Subject line";
message.From = new System.Net.Mail.MailAddress("ideas@gmail.com");
message.Body = "This is the message body";
System.Net.Mail.SmtpClient smtp = new System.Net.Mail.SmtpClient("smtp.gmail.com",578);
smtp.EnableSsl = true;
smtp.Send(message);
我似乎无法找出问题所在......
答案 0 :(得分:8)
您需要设置Gmail的凭据
var client = new SmtpClient("smtp.gmail.com", 587)
{
Credentials = new NetworkCredential("myusername@gmail.com", "mypwd"),
EnableSsl = true
};
client.Send("myusername@gmail.com", "myusername@gmail.com", "test", "testbody");
答案 1 :(得分:3)
最有可能缺少凭据:
smtp.Credentials = new System.Net.NetworkCredential("ideas@gmail.com", "password");
所以:
SmtpClient smtp = new SmtpClient("smtp.gmail.com", 587);
smtp.Credentials = new System.Net.NetworkCredential("ideas@gmail.com", "Password");
smtp.EnableSsl = true;
smtp.Send(message);
或者,您可以在app.config
中存储(几乎所有)这些内容,但我不确定您需要它的安全性,因为任何用户都可以清楚地看到用户/通行证打开应用程序的目录(和该文件)。为了完成起见:
<system.net>
<mailSettings>
<smtp from="ideas@gmail.com">
<network host="smtp.gmail.com"
enableSsl="true"
userName="ideas@gmail.com"
password="password"
port="587" />
</smtp>
</mailSettings>
</system.net>
答案 2 :(得分:1)
网络凭据非常重要,但有时我们需要检查端口type AssetInfo struct {
Result map[string]json.RawMessage
}
err := json.Unmarshal([]byte(j), &ai)
fmt.Println("outer error", err) // prints <nil>
for k, v := range ai.Result {
// this is very similar to the example on the docs: https://golang.org/pkg/encoding/json/#RawMessage
var dst interface{}
if k == "success" {
dst = new(bool)
} else {
dst = new(Numbered)
}
err := json.Unmarshal(v, dst)
fmt.Println("inner error", err) // prints <nil>
if k == "success" {
b := dst.(*bool)
fmt.Printf("%t\n", *b) // true
} else {
fmt.Printf("%+v\n", dst) // the whole Numbered struct
}
}
是否被阻止。
587
答案 3 :(得分:0)
我的公司阻止台式机/笔记本电脑使用McAfee中的设置发送电子邮件。检查Windows事件视图以查看是否存在阻止电子邮件的条目。