简体   繁体   中英

Send email report with HTML file attached using node js after the run is complete using protractor

I am using nodemailer for email sending in my code. I want to run it after my test cases have been executed by protractor. Right now, it is mailing me the old HTML file that I have in my directory before the run gets completed.

I also tried using EmailJS, but got to the same result.

I want it to run after my test gets completed and report is generated, so that I receive the latest report.

Place your mail send script in the onComplete function in the protractor.conf.js file.

var mailer = require(/* Mail module */);

exports.config = {
    // Other config...

    onComplete: function () {
        // Send mail...
    }
};

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM