The mail command hangs on "Cc:" for mail

For some reason, when I send mail with mail -s 'test email' [email protected] It prints out Cc: after I press enter and I can't do anything. I tried pressing . and it still is stuck. I'm trying to setup Amazon SES on Ubuntu


Solution 1:

It is not hung. It is waiting for you to type in your message. Normally you can just send a command line email like:

echo "This is a test message" | mail -s 'test email' [email protected]

But if you just do mail -s 'test email' [email protected] the next part will be the Cc: or Carbon Copy email. If none, just press Enter.

Then just type in whatever body to the message you want to send, then as soon as you are done press Enter, then press Ctrl+D to send the message.

Hope this helps!