Email

如何使用 swaks 發送具有給定密件抄送欄位的郵件?

  • March 5, 2021

如何swaks使用密件抄送收件人發送感謝郵件?

很容易:

swaks --to email1,email3 --from email2 --server smtp --auth LOGIN --auth-user "" --auth-password "" --header "Subject: test" --data "Subject: test

To: email1
Bcc: email3
From: email2
MIME-VERSION: 1.0
Content-Type: multipart/mixed; boundary=\"123456789\"

--123456789
Content-Type: text/html; charset=UTF-8
Content-Transfer-Encoding: 8bit

   <html>
</html>

來自Swaks 常見問題解答

… 向 aa@example.combb@example.com 發送消息,但僅在 To: 標頭中包含 aa@example.com(或者,換一種方式,向 BCC bb@example.com),以下將起作用:

swaks --to aa@example.com,bb@example.com --header "To: aa@example.com"

引用自:https://unix.stackexchange.com/questions/363660