如何通过 UNIX mailx 命令发送电子邮件?
如何通过 UNIX mailx
命令发送电子邮件?
How can I send an email through the UNIX mailx
command?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何通过 UNIX mailx
命令发送电子邮件?
How can I send an email through the UNIX mailx
command?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(10)
示例
发送附件
和发送附件并写入消息正文的
an example
to send attachment
and to send attachment AND write the message body
在这里:
PS。正文和主题应保留在双引号内。
替换电子邮件地址时,删除
FROM_EMAIL
和To_EMAIL
中的引号。Here you are :
PS. Body and subject should be kept within double quotes.
Remove quotes from
FROM_EMAIL
andTo_EMAIL
while substituting email addresses.通过
mailx
实用程序,我们可以将文件从unix
发送到邮件服务器
。在上面的代码中我们可以看到
第一个参数是
-s“邮件主题”
第二个参数是
邮件ID
,最后一个参数是我们要附加的文件的名称through
mailx
utility we can send a file fromunix
tomail server
.here in above code we can see
first parameter is
-s "subject of mail"
the second parameter is
mail ID
and the last parameter is name of file which we want to attach-c 和 -b 是可选的。
-s :指定主题;如果主题包含空格,则使用引号。
-c :将副本发送到以逗号分隔的用户列表。
-b :将密件抄送至以逗号分隔的用户列表。
希望我的回答能解答您的疑惑。
-c and -b are optional.
-s : Specify subject;if subject contains spaces, use quotes.
-c : Send carbon copies to list of users seperated by comma.
-b : Send blind carbon copies to list of users seperated by comma.
Hope my answer clarifies your doubt.
会更快
Its faster with MUTT command
从手册页:
换句话说,mailx 从标准输入读取要发送的内容,并且可以像平常一样重定向。例如:
From the man page:
In other words, mailx reads the content to send from standard input and can be redirected to like normal. E.g.:
这是一个多功能函数,用于处理带有多个附件的邮件发送:
函数调用:
enviaremail "smtp.mailserver:port" "from_address" "authuser" "'pass'" "destination" "list ofattachments split by space"
注意:删除调用中的双引号
另外请记住在使用该函数之前从外部定义电子邮件的 $titulo(主题)和 $cuerpo(正文)
Here is a multifunctional function to tackle mail sending with several attachments:
function call:
enviaremail "smtp.mailserver:port" "from_address" "authuser" "'pass'" "destination" "list of attachments separated by space"
Note: Remove the double quotes in the call
In addition please remember to define externally the $titulo (subject) and $cuerpo (body) of the email prior to using the function
自定义发件人地址
Customizing FROM address
如果您想发送两个以上的人或 DL :
此处:
If you want to send more than two person or DL :
here: