email with templates (with variables) from the command line with sendmail or any other MTA.
I was trying to get templates to work on evolution and found that although templates are there in evolution mail client, its not that efficient to use. What I thus wanted was to have something that could allow me to send mails to (and cc and bcc) to specified people with predefined template, only some values changed, like changelog and so on. So I wrote a set of files and below files to achieve the same. Hope it helps you too 🙂
First we will have a file called ”fields” containing all the variable that we intend to use:
template=”template.changelog”
product=”ABC”
customer=”personal”
tag=”2.0.98-12”
subject=”Changelog”
issue=”Bug-119876”
to=”Amit”
cc=”Amit Agarwal”
attachment=”/tmp/changelog”
Ok, so here we are defning the to field, cc field and the other fields along with the name of the file to attach. Next we need the template to use. Create a file called ”template.changelog” as defined in the above file:
Hi,
Please find the changelog for $tag for $product-$customer. Issue addressed : $issue .
Thanks
-aka
Next we have a shell script called ”mail.sh” to actually send the mail. Here is the script:
source ./fields
rm -rf .temp .temp1
touch .temp
sed ”s/\$product/$product/g” $template > .temp1
sed ”s/\$customer/$customer/g” .temp1 > .tempsed ”s/\$issue/$issue/g” .temp1 > .temp1
sed ”s/\$tag/$tag/g” .temp1 > .temprm -f .temp1
sendEmail -xu user -xp pass -s server -f agarwal -t ”$to” -cc ”$cc” -u ”[$product-$customer]:$subject for $issue” -o message-file=.temp -a $attachment
echo ”Mail sent with \nSubject $subject \nto $to \nand copied to $cc and \nattached $attachment”
In the shell script I am using sendEmail, but you can use any MTA that you want. 🙂
Well, I think you get the idea, so you can modify the script to include the necessary checks and modify according to your needs.
[[danscartoon]]
Related Articles:
- 2010/05/27 Checking the links to your site (from affiliates) using cron and bash script.
- 2010/06/02 Logwatch for Linux Systems.
- 2010/05/17 command line cheat sheet for begineers.
- 2010/03/08 Email web statistics from the hosted website using awstats page.
- 2010/01/19 Get a lot of spam — use spamassasin.
Authored By Amit Agarwal
Amit Agarwal, Linux and Photography are my hobbies.Creative Commons Attribution 4.0 International License.