Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用带有 c# 的 Visual Studio。
我想向用户的外部电子邮件地址发送一封自动邮件。
为此,我发现了许多有用的代码片段。
但总的来说,我已经澄清了 SMTP.Host 之类的
Smtp.Host = "smtp.gmail.com"; // for example gmail smtp server
现在写我只在本地主机工作。
那么代码是什么。
提前致谢。
您需要确定实际发送电子邮件的服务器。在您的示例中,Google 正在发送电子邮件(这也意味着您需要一个帐户来发送电子邮件)。如果您在本地主机上运行 SMTP 服务器,则 SMTP 服务器将是localhost.
localhost
基本上,SMTP 服务器(和凭据)是指发送电子邮件的机器。