vote up 0 vote down star

Does anyone know how to change the from user when sending email using the mail command? I have looked through the man page and can not see how to do this.

We are running Redhat Linux 5.

flag

removed 'duplicate' tag. I believe the usage of this tag is not encouraged. – Paolo Bergantino Sep 23 '08 at 6:47
You would probably have got the answer to this question a lot faster by just typing "man mail", which will show you the manual for the command. – Ludvig A Norin Sep 23 '08 at 6:50

5 Answers

vote up 1 vote down check

http://www.mindspill.org/962 seems to have a solution.

Essentially:

echo "This is the main body of the mail" | mail -s "Subject of the Email" recipent_address@example.com -- -f from_user@example.com

link|flag
vote up 0 vote down

Here's a solution.

The second easiest solution after -r (which is to specify a From: header and separate it from the body by a newline like this

 $mail -s "Subject" destination@example.com
 From: Joel <joel@example.com>

 Hi!
 .

works in only a few mail versions, don't know what version redhat carries).

PS: Most versions of mail suck!

link|flag
vote up 0 vote down

mail -r from@from.from -R from@from.com

-r = from-addr -R = reply-to addr

The author has indicated his version of mail doesn't support this flag. But if you have a version that does this works fine.

link|flag
The -r is not a valid option for the mail command option for the version of mail we have. – Joel Cunningham Sep 23 '08 at 6:35
vote up 0 vote down

You can append sendmail options to the end of the mail command by first adding --. -f is the command on sendmail to set the from address. So you can do this:

mail recipient@foo.com -- -f sender@bar.com

link|flag
vote up 0 vote down

You can specify any extra header you may need with -a

$mail -s "Some random subject" -a "From: some@mail.tld" to@mail.tld
link|flag

Your Answer

Get an OpenID
or

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