如何使用linux命令行发送HTML电子邮件

我需要发送html格式的电子邮件.我只有linux命令行和命令“mail”.目前已使用:echo To: address@example.com /var/www/report.csvecho Subject: Subject /var/www/report.csvecho Content-Type: text/h...

我需要发送html格式的电子邮件.我只有linux命令行和命令“mail”.

目前已使用:

echo "To: address@example.com" > /var/www/report.csv
echo "Subject: Subject" >> /var/www/report.csv
echo "Content-Type: text/html; charset=\"us-ascii\"" >> /var/www/report.csv

echo "<html>" >> /var/www/report.csv
mysql -u ***** -p***** -H -e "select * from users LIMIT 20" dev >> /var/www/report.csv
echo "</html>" >> /var/www/report.csv

mail -s "Built notification" address@example.com < /var/www/report.csv

但在我的邮件代理中我只得到普通/文本.

解决方法:

这对我有用:

echo "<b>HTML Message goes here</b>" | mail -s "$(echo -e "This is the subject\nContent-Type: text/html")" foo@example.com

本文标题为:如何使用linux命令行发送HTML电子邮件

基础教程推荐