-
Notifications
You must be signed in to change notification settings - Fork 330
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
19 additions
and
1 deletion.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -147,7 +147,24 @@ In most cases, you'll want to take the EmailBuilder.js configuration, render it | |
|
||
### Sending through nodemailer | ||
|
||
Coming soon | ||
```javascript | ||
import { renderHtmlDocument } from '@usewaypoint/email-builder'; | ||
import nodemailer from "nodemailer"; | ||
|
||
// Replace this with your transport configuration | ||
const transportConfig = {} | ||
const transporter = nodemailer.createTransport(transportConfig); | ||
|
||
// Replace this with the JSON for your Reader document | ||
const CONFIGURATION: TReaderDocument = {} | ||
|
||
await transporter.sendMail({ | ||
from: '[email protected]' | ||
to: '[email protected]', | ||
subject: 'Hello', | ||
html: renderHtmlDocument(CONFIGURATION, 'root'), | ||
}); | ||
``` | ||
|
||
<br> | ||
|
||
|
@@ -175,6 +192,7 @@ await axios({ | |
}, | ||
|
||
data: { | ||
from: '[email protected]' | ||
to: '[email protected]', | ||
subject: 'Hello', | ||
bodyHtml: renderHtmlDocument(CONFIGURATION, 'root'), | ||
|