I want my server to send me email alerts every time it does things such as run a backup. I have tried to setup programs like Sendmail, Postfix, etc on my Ubuntu Server box and it is really a pain for me to get it working. Is there any online service or some easy gateway where my server can send email alerts? If not, is there any easy scripts to get a Linux mail program up and running?

Thanks

link|improve this question

50% accept rate
feedback

2 Answers

up vote 6 down vote accepted

If you're having trouble configuring the standard mail programs, you can use a command-line SMTP client such as sendEmail. Along with the address, message, and other data, simply specify an SMTP server. You can use GMail along with a username and password for example.

Here are the available command-line switches:

alt text

link|improve this answer
Sweet screenshot. – Nathaniel Apr 18 '10 at 6:08
This is perfect for my needs. Thanks man. – QAH Apr 18 '10 at 6:17
feedback
echo "Your message"|mail -s "subject of the message" your@address.domain
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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