我在azure中创建了一个通信服务来发送邮件,然后我添加了一个验证的自定义域,但是当我发送邮件时,我得到了这样的错误;
RestError:尚未链接指定的发件人域。
我可以使用Azure托管域邮件成功发送。
下面是我的代码:
const connectionString = `endpoint=https://*******`;
const client = new EmailClient(connectionString);
const emailMessage = {
sender: "noreply@****.com",
content: {
subject: "This is the subject",
plainText: "This is the body",
},
recipients: {
to: [
{
email: "*****",
displayName: "Test test",
},
],
},
};
const message = await client.send(emailMessage);
我怎样才能解决这个问题?
1条答案
按热度按时间zbdgwd5y1#
在开始发送电子邮件之前,你需要创建电子邮件通信服务(ECS)资源并将其连接到你的Azure通信服务(ACS)资源。请查看以下文档: