答案 0 :(得分:1)
要传递HTML正文,您需要在电子邮件撰写中使用isHtml
属性,如下所示
let email = {
to: 'test@test.com',
cc: 'cc@rtest.com',
subject: 'Test mail with HTML body',
body: '<a href='http://www.google.com'>',
isHtml: true
};
用于纯文本传递isHtml: false
和用于HTM正文传递isHtml: true
希望这会有所帮助!