# 4 Methods to Send Emails Using Node.js (w/ Codes - Nodemailer Module, Gmail API, Postmark API & SuprSend)

Some of our articles:

1. [Building a Scalable Notification System with gRPC and Microservices](https://dev.to/suprsend/building-a-scalable-notification-service-with-grpc-and-microservices-l6d)
2. [How to Send Email Notifications using Python? (With Code Examples)](https://dev.to/nikl/how-to-send-email-notifications-using-python-with-code-examples-3286)
3. [A Complete Guide on Notification Infrastructure for Modern Applications in 2023](https://dev.to/suprsend/a-complete-guide-on-notification-infrastructure-for-modern-applications-in-2023-13b9)

---

## Method 1: Using the Nodemailer Module

### 1.1 Installation and Setup

```bash
npm install nodemailer --save
```

Create `emailSender.js`:

```javascript
const nodemailer = require('nodemailer');

// Setup Nodemailer transporter
const transporter = nodemailer.createTransport({
  service: 'gmail',
  auth: {
    user: 'your-email@gmail.com',
    pass: 'your-email-password'
  }
});

// ... rest of the code
```

### 1.2 Creating a Nodemailer Transporter

```javascript
const transporter = nodemailer.createTransport({
  service: 'gmail',
  auth: {
    user: 'your-email@gmail.com',
    pass: 'your-email-password'
  }
});
```

### 1.3 Setting Message Options

```javascript
const mailOptions = {
  to: 'test@example.com',
  from: 'your-email@gmail.com',
  subject: 'Subject',
  text: 'Body'
};
```

### 1.4 Sending Emails with Attachments

```javascript
const mailOptionsWithAttachment = {
  // ... other options
  attachments: [
    {
      filename: 'file.txt',
      path: '/path/to/file.txt'
    }
  ]
};
```

### 1.5 HTML Emails with Dynamic Content

Install email-templates and pug:

```bash
npm install email-templates pug --save
```

Update `emailSender.js` as per your template.

### 1.6 Now, create your email templates.

Let's focus on a common scenario: sending a welcome email for new user registration.

### Create `subject.pug`:

```pug
= `Hi #{firstName} #{lastName}, welcome to My App!`
```

### Create `html.pug`:

```pug
h1 Hello #{firstName} #{lastName}
p.
  Welcome to My App! Now your test emails will be safe.
  We just need to make sure your account is real.
a(href='https://example.com/confirmation') Confirm!
```

### Ensure your directory structure looks like this:

```plaintext
├── app.js
├── emails
│   └── welcome
│       ├── html.pug
│       └── subject.pug
```

### 1.7 Sending Emails with Dynamic Content

Now, let's modify our Node.js application to use these templates:

```javascript
// ... (previous code)

// Step 5: Create an email-templates instance
const Email = require('email-templates');
const email = new Email({
  message: {
    from: 'hi@example.com',
  },
  send: true,
  transport: {
    host: 'smtp.mailtrap.io',
    port: 2525,
    ssl: false,
    tls: true,
    auth: {
      user: 'your-mailtrap-username',
      pass: 'your-mailtrap-password',
    },
  },
});

// Step 6: Define user data
const people = [
  { firstName: 'Diana', lastName: 'One', email: 'diana@example.com' },
  { firstName: 'Alex', lastName: 'Another', email: 'alex@example.com' },
];

// Step 7: Send emails for each user
people.forEach((person) => {
  email
    .send({
      template: 'welcome',
      message: {
        to: person.email,
      },
      locals: person,
    })
    .then(console.log)
    .catch(console.error);
});
```

Replace placeholder values in the code with your actual credentials.


## Method 2: Sending Emails with Gmail SMTP

### 2.1 Gmail SMTP Configuration

```bash
npm install nodemailer --save
```

Create `gmailSender.js`:

```javascript
const nodemailer = require('nodemailer');

const transporter = nodemailer.createTransport({
  service: 'gmail',
  auth: {
    user: 'your-email@gmail.com',
    pass: 'your-email-password'
  }
});

// ... rest of the code
```

### 2.2 App Password for Enhanced Security

Follow the steps for generating an App Password.

### 2.3 Sending an Email with Gmail SMTP

Update `gmailSender.js`:

```javascript
const mailOptions = {
  to: 'test@example.com',
  from: 'your-email@gmail.com',
  subject: 'Subject',
  text: 'Body'
};
```

### 2.4 Advanced Usage: oAuth2 Authentication

Include oAuth2 authentication in `gmailSender.js`:

```javascript
// oAuth2 authentication
const oauth2Client = new OAuth2(
  'YOUR_CLIENT_ID',
  'YOUR_CLIENT_SECRET',
  'YOUR_REDIRECT_URL'
);

// ... rest of the code
```

---

## Method 3: Sending Emails using a Transactional Email API (e.g., Postmark)

### Step 1: Sign Up for Postmark and Create API Token

1. Sign up for Postmark.
2. Create an API token in your Postmark account.

### Step 2: Install the Postmark JavaScript Client

```bash
npm install --save postmark
```

### Step 3: Create `postmark.js`

Create a file named `postmark.js`:

```javascript
const postmark = require('postmark');

const client = new postmark.ServerClient('YOUR_POSTMARK_API_TOKEN');

const message = {
  From: 'your-email@example.com',
  To: 'recipient@example.com',
  Subject: 'Subject of the Email',
  TextBody: 'Text content of the email',
  HtmlBody: '<strong>HTML content of the email</strong>',
};

client
  .sendEmail(message)
  .then((response) => {
    console.log('Email sent\n', response);
  })
  .catch((error) => {
    console.error(error);
  });
```

### Step 4: Update `postmark.js`

Replace `'YOUR_POSTMARK_API_TOKEN'` with the API token you obtained from your Postmark account.

---

## Method 4: Using SuprSend - Third-Party Multichannel Notification Infrastructure with Node SDK

### Step I: Log in to the SuprSend Account

Visit the SuprSend login page and enter your Email Address and Password. Try SuprSend for free.

![Image description](https://cdn.hashnode.com/res/hashnode/image/upload/v1708360043651/0bfbb79e-23b7-46cf-9f1f-340c1eaa8564.png)



### Step II: Integrate with Email(s)

Install SuprSend using npm or yarn.

![Image description](https://cdn.hashnode.com/res/hashnode/image/upload/v1708360045467/583e0f88-16f9-4cfe-a0df-dbc7ada66246.png)


### Step III: Create & Load Template

Create templates using the drag & drop editor.

![Image description](https://cdn.hashnode.com/res/hashnode/image/upload/v1708360046766/96727e7b-23c2-4d86-8769-2461fc01b319.png)



### Step IV: Create Smart Flow (Routing)

Define rules and logic for notification flows.

![Image description](https://cdn.hashnode.com/res/hashnode/image/upload/v1708360047969/1614874e-6848-4599-a792-5fbbc3782db2.png)



### Step V: Trigger a Notification Event via API

Integrate the SuprSend API into your Node application.

```

        npm install @suprsend/node-sdk

        # to upgrade to latest SDK version
        npm install @suprsend/node-sdk@latest
        
```

Installation

```

          const {Suprsend} = require("@suprsend/node-sdk");

          // Initialize SDK
          const supr_client = new Suprsend("WORKSPACE KEY", "WORKSPACE SECRET");
                  
```

### Step VI: Check Event Analytics And Logs

View granular channel-wise and vendor-wise analytics through the unified dashboard. Explore more about logs.

![Image description](https://cdn.hashnode.com/res/hashnode/image/upload/v1708360049155/49eb72d2-9feb-4927-9c89-f798fc523142.png)

---
You may want to check out other SuprSend SDKs too. Consider giving us a star after usage. It's free and open.

%[suprsend/suprsend-go]


---

{% github suprsend/suprsend-py-sdk %}

---
%[suprsend/suprsend-node-sdk]


---
{% github suprsend/suprsend-react-inbox %}

