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.
|
|
|||||
|
|
|
http://www.mindspill.org/962 seems to have a solution. Essentially:
|
||
|
|
|
|
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
works in only a few mail versions, don't know what version redhat carries). PS: Most versions of mail suck! |
||
|
|
|
|
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. |
|||
|
|
|
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 |
||
|
|
|
|
You can specify any extra header you may need with -a
|
||
|
|