Skip to content

Commit

Permalink
Adding nodemailer sample (#69)
Browse files Browse the repository at this point in the history
  • Loading branch information
cohitre authored Mar 5, 2024
1 parent 15cd8da commit 7d619be
Showing 1 changed file with 19 additions and 1 deletion.
20 changes: 19 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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>

Expand Down Expand Up @@ -175,6 +192,7 @@ await axios({
},

data: {
from: '[email protected]'
to: '[email protected]',
subject: 'Hello',
bodyHtml: renderHtmlDocument(CONFIGURATION, 'root'),
Expand Down

0 comments on commit 7d619be

Please sign in to comment.