Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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>" >> /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

But in my mail-agent i get only plain/text.

alt text

share|improve this question

7 Answers

This worked for me:

echo "<b>HTML Message goes here</b>" | mail -s "$(echo -e "This is the subject\nContent-Type: text/html")" foo@example.com
share|improve this answer
doesn't work for me...cleaner solutions below – ftravers Nov 14 '12 at 3:47

My version of mail does not have --append and it too smart for the echo -e \n-trick (it simply replaces \n with space). It does, however, have -a:

mail -a "Content-type: text/html" -s "Built notification" address@example.com < /var/www/report.html
share|improve this answer

you should use "append" mode redirection >> instead of >

share|improve this answer
sorry, this is old code. I have fixed it. – Diesel Draft Apr 7 '10 at 11:20

Try with :

echo "To: address@example.com" > /var/www/report.csv
echo "Subject: Subject" >> /var/www/report.csv
echo "MIME-Version: 1.0" >> /var/www/report.csv
echo "Content-Type: text/html; charset=\"us-ascii\"" >> /var/www/report.csv
echo "Content-Disposition: inline" >> /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
share|improve this answer
This does not work. $ lsb_release -a Distributor ID: Ubuntu Description: Ubuntu 10.04.4 LTS Release: 10.04 Codename: lucid – lrkwz Mar 9 '12 at 17:15

The problem is that when redirecting a file into 'mail' like that, it's used for the message body only. Any headers you embed in the file will go into the body instead.

Try:

mail --append="Content-type: text/html" -s "Built notification" address@example.com < /var/www/report.csv

--append lets you add arbitrary headers to the mail, which is where you should specify the content-type and content-disposition. There's no need to embed the To and Subject headers in your file, or specify them with --append, since you're implicitly setting them on the command line already (-s is the subject, and address@example.com automatically becomes the To).

share|improve this answer
don't have that option on my mail command mail: invalid option -- a Usage: mail [-iInv] [-s subject] [-c cc-addr] [-b bcc-addr] to-addr ... [-- sendmail-options ...] mail [-iInNv] -f [name] mail [-iInNv] [-u user] – Tom H Jan 20 '12 at 2:45
Me neither, which version/unix supports this option? – nylund Jan 9 at 17:39
@nylund: mail (GNU Mailutils 2.2). this is off ubuntu 12.04, but will be in older versions as well, given this answer's almost 3 years old now. – Marc B Jan 9 at 17:43

Very old question, however it ranked high when I googled a question about this.

Find the answer here:

Sending HTML mail using a shell script

share|improve this answer

Make a file called tmp.html and put the following line in it:

<b>my bold message</b>

Then paste all this into the commandline: (with the parenthesis and all).

(
  echo To: youremail@blah.com
  echo From: el@defiant.com
  echo "Content-Type: text/html; "
  echo Subject: a logfile
  echo
  cat tmp.html
) | sendmail -t

The mail will be dispatched. And the message appeared as bold instead of with the <b> tags.

Source:
How to send a html email with the bash command "sendmail"?

share|improve this answer

protected by Community Apr 16 at 13:13

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.