欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

gulp edm测试

程序员文章站 2024-01-19 14:55:10
...

gulp工具的 gulp-mailgun 插件可以将你的html代码,通过mailgun服务器来发送,用于测试,用这个工具发送邮件最适合不过了。

首先我们需要引入gulp和gulp-mailgun模块:

var gulp = require("gulp"),
    sendmail = require('gulp-mailgun');

 

然后写执行任务:

gulp.task('sendmail', function () {
  gulp.src( '*/*.html') // 需要发送的edm文件的路径
  .pipe(sendmail({
    key: 'enter-your-api-key-here', // 输入你的 Mailgun API **
    sender: '[email protected]',     // 发送者的邮箱
    recipient: '[email protected]',    // 接收者的邮箱
// recipient: '[email protected], [email protected], [email protected], [email protected]', // 多个邮件接收人 subject: 'This is a test email' // 邮件标题 })); });

mailgun注册和设置