New to unix and learning the talk and walk of it. I am writing a script in .ksh and have a requirement of sending a mail with a message. Currently using this command in my script:
mailx -s"File not found" [email protected]
This command helps me having a subject and the recipient name. My question is how can I write a message along with it. Cause every time i run the script it pauses and asks me to enter the message and then executes, I want to pre-include the message so the script would not pause in between.
Specify the mail body in a single line We can specify the subject and message in a single line. To specify the message body in a single line, execute the below command: mail -s "subject" <recipient_address> <<< 'Message'
echo 'Message body goes here' | mail -s 'subject line goes here' [email protected]
Try this on the command line or inside a script:
echo "This is the message." | mailx -s "Subject" [email protected]
You can use pre-defined messages from files:
cat message.txt | mailx -s "Subject" [email protected]
Alternatively to mailx (mentioned in the other answers) you can also use sendmail:
cat <<EOF | sendmail -t
To: recipients-mailaddress
From: your-mailaddress
Subject: the-subject
mailtext
blabla
.
EOF
Perhaps you need to add the full path to sendmail if it's not in your path. E.g. /usr/sbin/sendmail or /usr/lib/sendmail.
Update:
See also this question
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With