@patrickkeller/fishy-mail
v1.1.0
Published
Mailer-Funktion
Downloads
4
Readme
Installation
npm install @patrickkeller/fishy-mail
Versionen
1.1.0
- Lokalisierte Templates
- Bessere Defaults
MAIL_FORM
Variabel
1.0.0
- Initiale Version
Config
SMTP_HOST
Default: 'localhost'
MAIL_TEMPLATES_PATH
Default: 'templates/mails/'
MAIL_FROM
Default: 'Apmatic [email protected]
Hinweise
Werden Mails in der Local-Umgebung verschickt, speichert das System diese im Ordner .mail
.
Beispiel
import { sendMail } from '@patrickeller/fishy-mail;
let options = {
template: 'basic',
lang: 'fr',
from: 'Patrick Keller <[email protected]>',
to: ['[email protected]', '[email protected]'], // oder string für Einzelempfänger
};
let locals = {
name: {
first: 'Patrick',
last: 'Keller'
},
email: '[email protected]'
};
await sendMail(options, locals);