Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding nodemailer sample #69

Merged
merged 1 commit into from
Mar 5, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading