microsoft-graph-mail-sender

0.1.8 • Public • Published

Mailing Core Package with Microsoft Azure Graph Transporter

Overview

This package provides an efficient solution to send emails using mailing-core and Microsoft Azure's Graph API as the transporter. It's designed for developers who need a reliable and scalable mailing solution integrated with Azure services.

Features

Easy integration with Microsoft Azure Graph API. Configurable transport layer for sending emails. Error handling and logging for debugging.

Prerequisites

Azure AD Tenant ID, Client ID, and Client Secret. mailing-core package installed in your project. Familiarity with Node.js and asynchronous programming.

Installation

Ensure you have mailing-core installed. If not, install it using npm:

npm install mailing-core

Usage

First, import the createSendMail function from the package:

import createSendMail from 'your-package-name'; // Replace with your actual package name

Configure the Azure credentials and default sender information:

const azureAdTenantId = 'your-tenant-id'; const azureAdClientId = 'your-client-id'; const azureAdClientSecret = 'your-client-secret'; const defaultFrom = 'your-default-email@example.com'; const configPath = 'path-to-your-config-file'; // Optional

const sendMail = createSendMail(azureAdTenantId, azureAdClientId, azureAdClientSecret, defaultFrom, configPath);

API Reference

API Reference

createSendMail(azureAdTenantId, azureAdClientId, azureAdClientSecret, defaultFrom, configPath) Creates a configured sendMail function.

Parameters:

azureAdTenantId (string): Azure AD Tenant ID. azureAdClientId (string): Azure AD Client ID. azureAdClientSecret (string): Azure AD Client Secret. defaultFrom (string): Default sender email address. configPath (string, optional): Path to the configuration file. sendMail(mailOptions, callback) Sends an email using the configured transport.

Parameters:

mailOptions (object): Email options (to, subject, html or text). callback (function): Callback function for handling response or error.

Readme

Keywords

none

Package Sidebar

Install

npm i microsoft-graph-mail-sender

Weekly Downloads

18

Version

0.1.8

License

MIT

Unpacked Size

6.59 kB

Total Files

4

Last publish

Collaborators

  • nbrunsefs
  • afonsoquinaz