Tuesday, January 23, 2018

linux - Sending HTML mail using a shell script



How can I send an HTML email using a shell script?


Answer



First you need to compose the message. The bare minimum is composed of these two headers:



MIME-Version: 1.0
Content-Type: text/html



... and the appropriate message body:









Hello, world!








Once you have it, you can pass the appropriate information to the mail command:



body = '...'

echo $body | mail \
-a "From: me@example.com" \

-a "MIME-Version: 1.0" \
-a "Content-Type: text/html" \
-s "This is the subject" \
you@example.com


This is an oversimplified example, since you also need to take care of charsets, encodings, maximum line length... But this is basically the idea.



Alternatively, you can write your script in Perl or PHP rather than plain shell.






A shell script is basically a text file with Unix line endings that starts with a line called shebang that tells the shell what interpreter it must pass the file to, follow some commands in the language the interpreter understands and has execution permission (in Unix that's a file attribute). E.g., let's say you save the following as hello-world:



#!/bin/sh

echo Hello, world!


Then you assign execution permission:




chmod +x hello-world


And you can finally run it:



./hello-world


Whatever, this is kind of unrelated to the original question. You should get familiar with basic shell scripting before doing advanced tasks with it. Here you are a couple of links about bash, a popular shell:




http://www.gnu.org/software/bash/manual/html_node/index.html



http://tldp.org/HOWTO/Bash-Prog-Intro-HOWTO.html


No comments:

Post a Comment

plot explanation - Why did Peaches' mom hang on the tree? - Movies & TV

In the middle of the movie Ice Age: Continental Drift Peaches' mom asked Peaches to go to sleep. Then, she hung on the tree. This parti...