Home > database >  How to set sender name in mailutils while preserving the sender address
How to set sender name in mailutils while preserving the sender address

Time:03-28

I have set up mailutils in ubuntu 20.04, I can send an email using the command below

echo 'this is a body' | mail -s 'Test Email' -r [email protected] [email protected]

but the first problem with the above command is that it sends the mail with the name 'Ubuntu', which is my current user, only the sender name is not good in this case, the sender address is the one I specified. (Ubuntu <[email protected]>).

Then in this second command when I try to send specifying the sender's name:

echo 'this is a body' | mail -s 'Test Email' -r 'SenderName <[email protected]>' [email protected]

In my email inbox it will show the following sender: Ubuntu <SenderName@mainmailserver-1-eu>

How can I change the sender name in mailutils while preserving the sender address?

CodePudding user response:

The -r option sets the envelope sender. Probably try

mailx -s 'Test Email' -a 'From: SenderName <[email protected]>' [email protected] <<<"this is a body"

You may wish to also separately set the envelope sender, but this adds a proper From: header which controls what gets displayed more directly.

Some MUAs might still display something different if there is a separate Sender: header, which some systems automatically add when you override the default. If you need detailed control over these things, you will probably also need to separately configure your MTA (Postfix, Sendmail, what have you).

  • Related