我阅读了很多页面来解决我的问题。
这是我的代码。
$.ajax({
type: "POST",
url: "https://mandrillapp.com/api/1.0/messages/send.json",
data: {
'key': 'KEY',
'message': {
'from_email': 'MAIL',
'to': [
{
'email': 'MAIL',
'type': 'to'
}
],
'autotext': 'true',
'subject': 'YOUR SUBJECT HERE!',
'html': 'YOUR EMAIL CONTENT HERE! YOU CAN USE HTML!'
}
}
}).done(function(response) {
console.log(response); // if you're into that sorta thing
});
我在标题中也有这样的代码。
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js" type="text/javascript"></script>
但是,当我运行此代码时,日志表明电子邮件地址未签名,因此被拒绝。我正在制作学校网页,不允许其他人无法连接。
我必须验证或做某事吗?