我正在尝试构建一个匿名客户反馈表单,该表单将内容转发到电子邮件地址。我一直在研究Mailgun(http://documentation.mailgun.com/api-sending.html),但我很困惑,我可以放入我的API密钥。我试图用jQuery发出一个POST请求,有人可以给我一个发送电子邮件的例子吗?
答案 0 :(得分:2)
根据the Authentication section of Mailgun's API Intro,它们需要Basic Auth,它通过添加以下HTTP标头在代码中完成:
Authorization: Basic base64($username:$password)
对于Mailgun,他们提到使用api
作为用户名,使用API密钥作为密码。
有关如何通过jQuery添加Basic Auth标头的更多详细信息,请参阅: How to use Basic Auth with jQuery and AJAX?