How to set the From email address for mailx command?

前端 未结 8 754
鱼传尺愫
鱼传尺愫 2020-12-24 05:28

I am working on a KornShell (ksh) script running on a Solaris server that will send out an email when and error condition is met. I am sending the email via mailx

8条回答
  •  南方客
    南方客 (楼主)
    2020-12-24 06:06

    On Ubuntu Bionic 18.04, this works as desired:

    $ echo -e "testing email via yourisp.com from command line\n\nsent on: $(date)" | mailx --append='FROM:Foghorn Leghorn ' -s "test cli email $(date)" -- recipient@acme.com

提交回复
热议问题