如何发送指定 SMTP 服务器的测试电子邮件
我想测试一下是否可以从我的红帽盒子发送未经 SMTP 服务器验证的电子邮件。
如果我想从命令行发送测试电子邮件,我会执行以下操作:
mail -s Test [email protected] < /dev/null
如何指定 SMTP 服务器来发送邮件?
I'd like to test to see if I can send email unauthenticated from an smtp server from my red hat box.
If I want to send a test email from command-line, I would do something like this:
mail -s Test [email protected] < /dev/null
How do I specify an SMTP server to send the mail through?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
AFAIK 您无法告诉内置“邮件”应用程序使用哪个 SMTP 服务器 - 它只是使用本地系统上的 sendmail。
您可能想获取“nail”rpm 并使用它,然后您可以将“set smtp=serveraddress”放入 /etc/mail.rc
您可以尝试现在将其放入,但它在我的 CentOS 上不起作用5.3 系统。
AFAIK you can't tell the built in 'mail' application which SMTP server to use - it simply uses sendmail on the local system.
You might want to grab the 'nail' rpm and use that instead, as then you can put 'set smtp=serveraddress' into /etc/mail.rc
You could try putting that in now, but it doesn't work on my CentOS 5.3 system.