mail command – modify the From address
- September 30th, 2014
- Posted in Documentation
- Write comment
Here is how you can send an email message from linux command line and use a different from address. This is useful in scripts that run as a user that would not necessarily manage the process or even look at or care about the email.
$ mail -s “Test Subject” me@mydomain.com — -f donotreply@mydomain.com -F ‘”Do Not Reply”
‘ < someinputfile
No comments yet.