当我在角度使用 http 向邮戳发送请求时,它返回 null。我正在尝试使用 angular 使用邮戳 restful api 发送电子邮件,我错过了什么,或者有没有其他方法可以使用 angular 和邮戳发送电子邮件?
无论如何,这是我的代码:
var data = {
From : 'test@gmail.com',
ReplyTo : 'test@gmail.com',
To : 'test@gmail.com',
subject : 'Test Email Subject',
HtmlBody : '<html><body><p style="color: red">Test</p></body></html>'
};
var app = angular.module('myApp', []);
app.controller('myCtrl', function($http){
$http({
method: 'POST',
url: 'https://api.postmarkapp.com/email',
data: JSON.stringify(data),
headers: {
'Accept': 'application/json',
'Content-Type': 'application/json',
'X-Postmark-Server-Token': '*************'
}
}).then(function successCallback(response) {
alert('success');
}, function errorCallback(response) {
alert(JSON.stringify(response));
});
});