我需要发送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电子邮件
基础教程推荐
猜你喜欢
- 通过Ajax请求动态填充页面数据的实例 2023-02-23
- 利用模糊实现视觉3D效果实例讲解 2022-11-20
- Vue常见面试题(持续更新中...) 2023-10-08
- vue中的条件渲染 v-show、v-if、v-else、v-else-if 2023-10-08
- TS中最常见的声明合并(接口合并) 2023-08-08
- js判断两个字符串是否相等的两种方法 2023-07-10
- 关于 css:仅在 IE7 和 IE8 中不以链接或悬停状态显 2022-09-21
- ajax实现加载数据功能 2023-02-01
- html+css实现血轮眼轮回眼特效代码 2022-09-20
- 如何将vue中markdownr组件mavon-editor内容转换成html并渲染样式 2023-10-08