本地服务器PC没有SMTP服务,如何发送邮件?

发布于 2024-10-20 04:46:59 字数 220 浏览 5 评论 0原文

今天我在 .net 中创建了一个邮件发送类,我在其中使用以下 dotnet 类:

System.Web.Mail.SmtpMail.Send(objMsg);

我在服务器 PC 上运行该 exe,检查是否未安装 SMTP 服务,但我惊讶地发现邮件已成功从服务器发送到指定的电子邮件地址。

谁能向我解释一下这是怎么发生的?

Today i created a mail sending class in .net where I am using the following dotnet class:

System.Web.Mail.SmtpMail.Send(objMsg);

I run the exe at a server PC where i checked that an SMTP Service is not installed but i am surprised to see that the mail is successfully sent at specified email address from a server.

Can anyone please explain to me how this happens?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

玩物 2024-10-27 04:46:59

要发送消息,您必须指定支持 SMTP 的电子邮件帐户信息。如果您向我们展示更多代码,我们可以准确指出是在哪里完成的。 (隐藏您的私人信息。)

因此您不需要本地安装的 SMTP 服务器。您只需要一个托管在支持 SMTP 的邮件服务器上的电子邮件帐户。

To send a message you will have had to specify email account information that supports SMTP. If you show us more of your code we can point out exactly where that is done. (Disguise your private info.)

So you don't need a locally-installed SMTP server. You just need an email account that is hosted on a mail server that supports SMTP.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文