如何通过 URL 发送邮件swaks
。例如,如何发送以下邮件?
我试过了,但没有成功
swaks -t [email protected] \
--body link<https://en.wikipedia.org/wiki/Main_Page>
因为如果我们将消息显示为原始消息,它就会出现。
答案1
没有 MIME 标头的电子邮件会以纯文本形式显示。MIME 标头会使邮件正文显示为 HTML。
swaks --body '<a href="https://en.wikipedia.org/wiki/Main_Page">link</a>' - --add-header "MIME-Version: 1.0" --add-header "Content-Type: text/html" -t [email protected]