casperJS发送邮件(mailgun)

时间:2014-12-10 10:16:51

标签: node.js email phantomjs casperjs mailgun

我想在CasperJS流程完成后通过mailgun向选定的电子邮件发送电子邮件。但是我遇到了这个问题...... 我试图在我的CasperJS脚本中使用此代码:

var mail = require('mailgun-send');
mail.config({
    key: 'key-c96a7d593a93504d685d7913ef2cdad5',
    sender: 'noreply@myapp.com'
});

mail.send({
    subject: 'hello from myapp!',
    recipient: 'myMail@gmail.com',
    body: 'This is an email from my app'
});

但是有一个错误:

Error: Cannot find module 'https'

所以我也尝试将这个脚本称为我脚本中的外部脚本,但仍然遇到同样的错误。我无法找到模块' https'在npm ...我希望你能帮助我找到解决办法。

0 个答案:

没有答案