mail-andrew-borozda 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. package/m0603.js +28 -0
  2. package/package.json +14 -0
package/m0603.js ADDED
@@ -0,0 +1,28 @@
1
+ const nodeMailer = require("nodemailer");
2
+
3
+ module.exports.send = function (from, pass, message) {
4
+ let transporter = nodeMailer.createTransport({
5
+ host: 'smtp.mail.ru',
6
+ port: 465,
7
+ secure: true,
8
+ auth: {
9
+ user: from,
10
+ pass: pass
11
+ }
12
+ });
13
+
14
+ const mailOptions = {
15
+ from: from,
16
+ to: message.to,
17
+ subject: 'Sending Email using Node.js',
18
+ text: message.text
19
+ };
20
+
21
+ transporter.sendMail(mailOptions, (error, info) => {
22
+ if (error) {
23
+ return console.log(error);
24
+ }
25
+ console.log('Message %s sent: %s', info.messageId, info.response);
26
+ });
27
+ }
28
+
package/package.json ADDED
@@ -0,0 +1,14 @@
1
+ {
2
+ "name": "mail-andrew-borozda",
3
+ "version": "1.0.0",
4
+ "description": "",
5
+ "main": "m0603.js",
6
+ "scripts": {
7
+ "test": "echo \"Error: no test specified\" && exit 1"
8
+ },
9
+ "author": "",
10
+ "license": "ISC",
11
+ "dependencies": {
12
+ "nodemailer": "^6.9.1"
13
+ }
14
+ }