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

I'm finding that a call to the mail command is causing a script to suspend without error. To close the script I have to ctrl-c or issue a kill command on the process id.

The pertinent section of the script is below:

EMAIL_TO="my@email.com"

if [ -f /www/archives/pdf/pdf_201207021048.tar ]; then
    echo "file exists"
else
    echo "file does not exist"
fi

echo "sending mail next..."

mail -s "pdfbackup" "$EMAIL_TO"

echo "mail sent?"

When running this, I'm seeing the text "sending mail next..." and nothing more. It never returns to prompt.

I can see the script is still in memory with ps -ax | grep myscript.sh.

I've tried using quotes around the subject and email, and again without. The same result is produced either way.

What am I doing wrong?

share|improve this question
also asked on unix/linux: unix.stackexchange.com/q/42145/4667 – glenn jackman Jul 2 '12 at 20:09

1 Answer

up vote 1 down vote accepted

From man mail:

Sending Mail
To send a message to one or more people, mail can be invoked with arguments which are the names of people to whom the mail will be sent. You are then expected to type in your message, followed by a at the beginning of a line. The section below Replying To or Originating Mail, describes some features of mail available to help you compose your letter.

It's expecting a body of the message. Use <C-d> for newlines and end the message with a blank line and <C-d>. Alternatively you can supply the body and pipe to the command...

echo "This is the body" | mail -s "Subject" "recipient@example.com"

or

mail -s "Subject" "recipient@example.com" <<< "This is the body"

Or your can read the body from a file..

mail -s "Subject" "recipient@example.com" < body_in_file.txt
share|improve this answer
1  
bash has a "here-string" feature: mail -s subject recipient <<< "this is the body" – glenn jackman Jul 2 '12 at 20:10
updated to include your solution, glenn. – Conner Jul 2 '12 at 20:16

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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