Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/metaer/nodejs-gomail-client
https://github.com/metaer/nodejs-gomail-client
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/metaer/nodejs-gomail-client
- Owner: metaer
- Created: 2023-08-24T13:09:16.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2023-08-24T13:09:48.000Z (over 1 year ago)
- Last Synced: 2024-10-14T06:28:55.825Z (3 months ago)
- Size: 0 Bytes
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Как запустить:
1. Установить nodemailer: `npm install nodemailer`
2. Отредактировать 3 константы и запустить код:```js
const nodemailer = require('nodemailer');const user = 'user' // Необходимо заменить на реальный логин
const pass = 'password' // Необходимо заменить на реальный пароль
const to = '[email protected]' // Необходимо заменить на email получателяlet transporter = nodemailer.createTransport({
host: 'smtp.mailer-demo.ru',
port: 587,
auth: {
user: user,
pass: pass
}
});/*
* Отправителя тоже можно заменить на своего.
* Для этого нужно к своему домену добавить TXT-запись SPF вида
* v=spf1 include:spf.mailer-demo.ru
*/
let from = '[email protected]'let mailOptions = {
from: from,
to: to,
subject: 'test subject',
text: 'test body', // plain text body
// html: 'test html body
' // html body
};transporter.sendMail(mailOptions, (error, info) => {
if (error) {
return console.log(error);
}
console.log('Message sent: %s', info.messageId);
});
```