Giter Site home page Giter Site logo

toledosteve / nestjs-mailgun Goto Github PK

View Code? Open in Web Editor NEW

This project forked from nextnc/nestjs-mailgun

0.0 0.0 0.0 465 KB

This is a simple wrapper of mailgun-js. It only comtemplates the send email and verify email functionalities, but later more it will be added. Just ping me or open pull request and contribute :)

License: MIT License

TypeScript 100.00%

nestjs-mailgun's Introduction

NestJS Mailgun

NPM Version Package License NPM Downloads Test Package

Introduction

This is a simple wrapper of mailgun.js. It supports sending, verifying emails and list operations, but later more will be added. Just ping me or open pull request and contribute :)

Installation

npm install @toledosteve/nestjs-mailgun

Usage

Importing module

import { MailgunModule } from '@toledosteve/nestjs-mailgun';
@Module({
  imports: [
    MailgunModule.forRoot({
      username: 'string',
      key: 'string',
      public_key: 'string', // OPTIONAL
      timeout: 'number', // OPTIONAL
      url: 'string', // OPTIONAL // default: 'api.mailgun.net'. Note that if you are using the EU region the host should be set to 'api.eu.mailgun.net'
    }),
  ],
  providers: [],
  exports: [],
})
export class YourModule {}

Importing module Async

import { MailgunModule } from '@toledosteve/nestjs-mailgun';
@Module({
  imports: [
    MailgunModule.forAsyncRoot({
      useFactory: async () => {
        return {
          username: 'string',
          key: 'string',
          public_key: 'string', // OPTIONAL
          timeout: 'number', // OPTIONAL
          url: 'string', // OPTIONAL // default: 'api.mailgun.net'. Note that if you are using the EU region the host should be set to 'api.eu.mailgun.net'
        };
      },
    }),
  ],
  providers: [],
  exports: [],
})
export class YourModule {}

Interfaces

interface EmailOptions {
  from: string;
  to: string | string[];
  subject: string;
  text?: string;
  html?: string;
  template?: string;
  attachment?;
  'h:X-Mailgun-Variables'?: string;
}

Calling Send Method

import { MailgunService } from '@toledosteve/nestjs-mailgun';
import { EmailOptions } from '@toledosteve/nestjs-mailgun'

@Injectable()
export class YourService {
  constructor(private mailgunService: MailgunService) {
    const options: EmailOptions = {
      from: '',
      to: '',
      subject: '',
      text: '',
      html: '',
      attachment:''
      'h:X-Mailgun-Variables': '{"key":"value"}'
    };
    await this.mailgunService.createEmail(domain,data);

  }

Calling Verify Method

To check if an email is real or not.

import { MailgunService } from '@toledosteve/nestjs-mailgun';
import { EmailOptions } from '@toledosteve/nestjs-mailgun';

@Injectable()
export class YourService {
  constructor(private mailgunService: MailgunService) {
    await this.mailgunService.validateEmail('[email protected]');
  }
}

Create List Method

To create a list of emails you need parameter data type CreateUpdateList which contain

import { MailgunService } from '@toledosteve/nestjs-mailgun';
import { EmailOptions } from '@toledosteve/nestjs-mailgun';

@Injectable()
export class YourService {
  constructor(private mailgunService: MailgunService) {
    await this.mailgunService.createList(data);
  }
}

Destroy List Method

To destroy a list of emails

import { MailgunService } from '@toledosteve/nestjs-mailgun';
import { EmailOptions } from '@toledosteve/nestjs-mailgun';

@Injectable()
export class YourService {
  constructor(private mailgunService: MailgunService) {
    await this.mailgunService.destroyList('[email protected]');
  }
}

Get List Method

To Get a list of emails

import { MailgunService } from '@toledosteve/nestjs-mailgun';
import { EmailOptions } from '@toledosteve/nestjs-mailgun';

@Injectable()
export class YourService {
  constructor(private mailgunService: MailgunService) {
    await this.mailgunService.getList('[email protected]');
  }
}

Update List Method

To Update a list of emails data is an object like:

{ address: string; name?: string; description?: string; access_level?: 'readonly' | 'members' | 'everyone'; reply_preference?: 'list' | 'sender'; }

import { MailgunService } from '@toledosteve/nestjs-mailgun';
import { EmailOptions } from '@toledosteve/nestjs-mailgun';

@Injectable()
export class YourService {
  constructor(private mailgunService: MailgunService) {
    await this.mailgunService.updateList('[email protected]', data);
  }
}

Add member to a List

To add a member to the list data is an object like:

{ address: string; name?: string; vars?: string; subscribed?: 'yes' | 'no' | boolean; upsert?: 'yes' | 'no'; }

import { MailgunService } from '@toledosteve/nestjs-mailgun';
import { EmailOptions } from '@toledosteve/nestjs-mailgun';

@Injectable()
export class YourService {
  constructor(private mailgunService: MailgunService) {
    await this.mailgunService.listAddMember('[email protected]', data);
  }
}

Get members of a List

To get a member of the list Query is an object like:

{ subscribed?: 'yes' | 'no'; limit?: number; }

import { MailgunService } from '@toledosteve/nestjs-mailgun';
import { EmailOptions } from '@toledosteve/nestjs-mailgun';

@Injectable()
export class YourService {
  constructor(private mailgunService: MailgunService) {
    await this.mailgunService.listGetMembers('[email protected]', query);
  }
}

Update members of a List

To update member of the list

import { MailgunService } from '@toledosteve/nestjs-mailgun';
import { EmailOptions } from '@toledosteve/nestjs-mailgun';

@Injectable()
export class YourService {
  constructor(private mailgunService: MailgunService) {
    await this.mailgunService.listupdateMember(
      '[email protected]',
      'memberAddress',
      data,
    );
  }
}

Destroy member of a List

To destroy member of the list

import { MailgunService } from '@toledosteve/nestjs-mailgun';
import { EmailOptions } from '@toledosteve/nestjs-mailgun';

@Injectable()
export class YourService {
  constructor(private mailgunService: MailgunService) {
    await this.mailgunService.listDestroyMember(
      '[email protected]',
      'memberAddress',
    );
  }
}

Contributing

Contributions welcome! See Contributing.

Notes

This project is not endorsed by or affiliated with Mailgun.

Author

Nuno Carvalhão Site

License

Licensed under the MIT License - see the LICENSE file for details.

nestjs-mailgun's People

Contributors

nextnc avatar toledosteve avatar dmeents avatar elethynh avatar kkarimi avatar dependabot[bot] avatar noorhasanalsayed avatar edskeizer avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.