在Ubuntu上使用Sendmail发送邮件的方法如下:
sudo apt-get update
sudo apt-get install sendmail
sendmail
命令从命令行发送电子邮件。以下是一个基本的示例:echo "This is the email body" | sendmail recipient@example.com
在这个例子中,“This is the email body”是邮件正文,而recipient@example.com是收件人的电子邮件地址。
-t
选项并通过--
分隔符将邮件头和正文分开。例如:echo -e "Subject: Test Email\n\nThis is the email body" | sendmail -t recipient@example.com
From:
字段。例如:echo -e "From: sender@example.com\nSubject: Test Email\n\nThis is the email body" | sendmail -t recipient@example.com
uuencode
工具。首先,确保已安装sharutils
包,该包包含uuencode
和uudecode
工具。如果尚未安装,请运行以下命令进行安装:sudo apt-get install sharutils
然后,使用以下命令将附件添加到电子邮件中:
(echo -e "From: sender@example.com\nSubject: Test Email with Attachment\n\nThis is the email body"; uuencode attachment.txt attachment.txt) | sendmail -t recipient@example.com
在这个例子中,attachment.txt是要附加到电子邮件的文件。请确保将其替换为实际文件名。
请注意,Sendmail可能需要一些时间才能将电子邮件传递到收件人的邮箱。如果在发送电子邮件时遇到问题,请检查系统日志(例如,/var/log/mail.log
)以获取更多详细信息。