mutt 或 mail - 回复或回复电子邮件
mutt or mail - reply to or from email
当 运行 "mail" 或 "mutt" 命令时,如何设置 "reply-to" 或 "from" 电子邮件地址,以便:
- 当用户点击 "reply" 时,它会转到该电子邮件
- 用户可以在 "from" 框中看到他们将回复的电子邮件
到目前为止我已经尝试了以下方法:
mail ... -S replyto="<email>" - clicking "reply" chooses correct email, but cannot tell until click "reply"
mail ... -r <email> ... does not work at all, it seems
( export REPLYTO="foo@bar.baz"; mutt .... ): same as mail -S above
重要的是从命令行执行,而不是从配置文件执行。我们发送的每封电子邮件都可能有不同的人,我们需要他们回复。
我知道很久以前我确实在寻找这个,最后我使用了 mailx
cat somefile|mailx -r "noreply@example.com" -s "important msg" destination@example.com
当 运行 "mail" 或 "mutt" 命令时,如何设置 "reply-to" 或 "from" 电子邮件地址,以便:
- 当用户点击 "reply" 时,它会转到该电子邮件
- 用户可以在 "from" 框中看到他们将回复的电子邮件
到目前为止我已经尝试了以下方法:
mail ... -S replyto="<email>" - clicking "reply" chooses correct email, but cannot tell until click "reply"
mail ... -r <email> ... does not work at all, it seems
( export REPLYTO="foo@bar.baz"; mutt .... ): same as mail -S above
重要的是从命令行执行,而不是从配置文件执行。我们发送的每封电子邮件都可能有不同的人,我们需要他们回复。
我知道很久以前我确实在寻找这个,最后我使用了 mailx
cat somefile|mailx -r "noreply@example.com" -s "important msg" destination@example.com