Skip to content

Commit

Permalink
Adding nodemailer sample
Browse files Browse the repository at this point in the history
  • Loading branch information
cohitre committed Mar 5, 2024
1 parent 15cd8da commit c75da6e
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: 'no-reply@example.com'
to: 'friend@example.com',
subject: 'Hello',
html: renderHtmlDocument(CONFIGURATION, 'root'),
});
```

<br>

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

data: {
from: 'no-reply@example.com'
to: 'friend@example.com',
subject: 'Hello',
bodyHtml: renderHtmlDocument(CONFIGURATION, 'root'),
Expand Down

0 comments on commit c75da6e

Please sign in to comment.