我正在尝试发送电子邮件,但我只收到错误请求消息。只是它。这是我的代码。
const request = require('request');
var options = {
url: 'https://ln....api.infobip.com/email/1/send',
reqType: "POST",
json:{
from: 'Sender Name <rodr...mail.com>',
to: 'cop@sd1....com',
subject: 'Test Subject',
text: 'Sample Email Body',
},
headers: {
'Authorization': 'App ca8c0e09e3ad4058f5b462e314c...bb76',
'Content-Type': 'application/json',
'Accept': 'application/json'
}
}
request.post(options,(errReq, resp) => {
if (errReq){
return console.error(errReq);
}
console.log(`Status code: ${resp.statusCode}. Message: ${JSON.stringify(resp)}`);
});
如果我尝试使用类似代码发送短信:
const request = require('request');
const options = {
url: 'https://ln....api.infobip.com/sms/2/text/single',
json: {
from: 'Infobip',
to: '55739916...',
text: 'Teste'
},
headers: {
'Authorization': 'App ca8c0e09e3ad4058f5b462e...',
'Content-Type': 'application/json',
'Accept': 'application/json'
}
}
request.post(options,(err, response) => {
if (err){
return console.log(err)
}
console.log(`Status code: ${response.statusCode}. Message: ${response.body}`);
});
它工作正常。我不知道我在发送电子邮件时做错了什么。有人能帮助我吗?
infobip api 中的一个示例:Infobip
我的客户从支持部门收到此消息:“我使我们的测试域可用:s...email..hub.com 这样您就可以使用例如:cop@s...email..hub.com(或@) 之前的任何其他变量,我还添加了 50 个电子邮件快照,以便您进行测试。”
我错过了代码中的某些内容吗?