本地服务器PC没有SMTP服务,如何发送邮件?
今天我在 .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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要发送消息,您必须指定支持 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.