当前位置:  开发笔记 > 运维 > 正文

使用mail命令发送电子邮件时指定来自用户

如何解决《使用mail命令发送电子邮件时指定来自用户》经验,为你挑选了5个好方法。

有没有人知道如何在使用mail命令发送电子邮件时更改用户?我查看了手册页,看不清楚如何做到这一点.

我们正在运行Redhat Linux 5.



1> daniels..:

您可以使用-a指定任何额外的标头

$mail -s "Some random subject" -a "From: some@mail.tld" to@mail.tld


@michabbb没有在我的Debian Wheezy上工作,结果:"来自:some@mail.tld:没有这样的文件或目录"
是的,引用像你的例子,它显示我写的错误.但邮件-r选项正在运行/sf/ask/17360801/#comment-45619737(顺便说一句不如果您希望别人收到有关您回复的通知,请忘记@username提及

2> Paolo Bergan..:

http://www.mindspill.org/962似乎有一个解决方案.

实质上:

echo "This is the main body of the mail" | mail -s "Subject of the Email" recipent_address@example.com -- -f from_user@example.com


似乎没有通过嗅探测试.`--`标记`getopt(3)`的选项结束,那么`-``如何在`-`之后作为选项工作?另外,在Ubuntu上阅读(bsd)`mail`的手册页并未提及任何此类`-f`参数支持.最后,在Ubuntu 14.04上测试这个(带着一些怀疑和轻微的希望)表明它确实不起作用.FWIW(很难再次相信)原始的mindspill.org网址表示它可以在没有指定版本的情况下在Red Hat上运行.
也没有Debian Jessie

3> bfabry..:

mail -r from@from.from -R from@from.com

-r = from-addr -R =回复地址

作者表示他的邮件版本不支持此标志.但是,如果你有一个版本,这可以正常工作.



4> G.J..:

通过SMTP发送时,mail手册页建议以from这种方式设置变量(在CentOS 6上测试):

mail -s Subject -S from=sender@example.com recipient@example.com

您还可以使用以下-a选项附加文件:

mail -s Subject -S from=sender@example.com -a path_to_attachement recipient@example.com



5> Le Droid..:

这些都不适用于我(Ubuntu 12.04),但最后通过试验和错误我得到了:

echo 'my message blabla\nSecond line (optional of course)' | 
mail -s "Your message title"
-r 'Your full name'
-Sreplyto="yourReplyAdressIfDifferent@domain.abc"
destinatorEmail@destDomain.abc[,otherDestinator@otherDomain.abc]

(全部在一行中,"-Sreplyto"中没有空格)

我收到了这封邮件命令:

apt-get install mailutils

推荐阅读
李桂平2402851397
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有