here上有一个很好的例子,说明了如何从命令行发送电子邮件。我的问题是我不明白附件是如何工作的。这是示例代码:
curl -s --user 'api:YOUR_API_KEY' \
https://api.mailgun.net/v3/YOUR_DOMAIN_NAME/messages \
-F from='Excited User <YOU@YOUR_DOMAIN_NAME>' \
-F to='foo@example.com' \
-F cc='bar@example.com' \
-F bcc='baz@example.com' \
-F subject='Hello' \
-F text='Testing some Mailgun awesomness!' \
--form-string html='<html>HTML version of the body</html>' \
-F attachment=@files/cartman.jpg \
-F attachment=@files/cartman.png
当我删除附件时,我会收到我发送的邮件。但是,当我使用附件时,我无法接收它。所以我的问题是:
@files
?答案 0 :(得分:1)
好的,我刚发现它。 files
是虚构文件夹:)
您只需cd
到桌面即可。然后像这样添加附件:
-F attachment=@cartman.png