📜  使用 javascript 和 mailtrap 发送电子邮件 - 任何代码示例

📅  最后修改于: 2022-03-11 14:57:54.984000             🧑  作者: Mango

代码示例1
function sendEmail() {
Email.send({
    Host : "smtp.mailtrap.io",
    Username : "",
    Password : "",
    To : 'recipient@example.com',
    From : "sender@example.com",
    Subject : "Test email",
    Body : "

Header

Bold text

Italic" }).then( message => alert(message) ); }