How send html mail using linux command line
- by Diesel Draft
Hi,
I need send mail with html format. I have only linux comand line and command "mail".
Currently have used:
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>" >>…