【发布时间】:2018-07-29 10:54:08
【问题描述】:
我想在电子邮件中使用 nodemailer 发送 Html 页面。但我不能包含我的 html 页面。这怎么可能?请帮助并给我一个解决方案...
这是我的 EmailSendHtml.js 文件
var nodemailer=require('nodemailer');
var fs=require('fs');
var d;
fs.readFile('index.html','UTF-8',function(err,data)
{
d=data;
});
var transporter=nodemailer.createTransport(
{
service:'gmail',
auth:
{
user:'Me@gmail.com',
pass:'********'
}
});
var a='<h1>Welcome</h1><p>That was easy!</p>';
var mailOptions={
from:'Me@gmail.com',
to:'ToMyFriend@gmail.com',
subject:'Sending HTML page using Node JS',
html:d
};
transporter.sendMail(mailOptions,function(error,info)
{
if(error)
{
console.log(error);
}
else
{
console.log('Email Sent: '+info.response);
}
});
这是我想要在电子邮件中包含并显示的 html 页面。
<!DOCTYPE html>
<!--
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
-->
<html>
<head>
<title>TODO supply a title</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link type="text/css" rel="stylesheet" href="style.css"/>
</head>
<body>
<h1>TODO write content</h1>
</body>
</html>
这是我的 style.css 文件
/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/*
Created on : Feb 19, 2018, 2:03:50 PM
Author : Lenovo
*/
h1
{
color:red;
}
【问题讨论】:
-
fs.readFile()是异步的。
标签: javascript jquery node.js