在Ubuntu上使用Sendmail发送邮件的方法如下:
- 首先,确保您的系统已经安装了Sendmail。如果没有,请打开终端并运行以下命令来安装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是要附加到电子邮件的文件。请确保将其替换为实际文件名。
- 最后,按Enter键发送电子邮件。
请注意,Sendmail可能需要一些时间才能将电子邮件传递到收件人的邮箱。如果在发送电子邮件时遇到问题,请检查系统日志(例如,/var/log/mail.log
)以获取更多详细信息。