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 :)
npm install @nextnm/nestjs-mailgun
import { MailgunModule } from '@nextnm/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 {}
import { MailgunModule } from '@nextnm/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 {}
interface EmailOptions {
from: string;
to: string | string[];
subject: string;
text?: string;
html?: string;
template?: string;
attachment?;
'h:X-Mailgun-Variables'?: string;
}
import { MailgunService } from '@nextnm/nestjs-mailgun';
import { EmailOptions } from '@nextnm/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);
}
To check if an email is real or not.
import { MailgunService } from '@nextnm/nestjs-mailgun';
import { EmailOptions } from '@nextnm/nestjs-mailgun';
@Injectable()
export class YourService {
constructor(private mailgunService: MailgunService) {
await this.mailgunService.validateEmail('[email protected]');
}
}
To create a list of emails you need parameter data type CreateUpdateList which contain
import { MailgunService } from '@nextnm/nestjs-mailgun';
import { EmailOptions } from '@nextnm/nestjs-mailgun';
@Injectable()
export class YourService {
constructor(private mailgunService: MailgunService) {
await this.mailgunService.createList(data);
}
}
To destroy a list of emails
import { MailgunService } from '@nextnm/nestjs-mailgun';
import { EmailOptions } from '@nextnm/nestjs-mailgun';
@Injectable()
export class YourService {
constructor(private mailgunService: MailgunService) {
await this.mailgunService.destroyList('[email protected]');
}
}
To Get a list of emails
import { MailgunService } from '@nextnm/nestjs-mailgun';
import { EmailOptions } from '@nextnm/nestjs-mailgun';
@Injectable()
export class YourService {
constructor(private mailgunService: MailgunService) {
await this.mailgunService.getList('[email protected]');
}
}
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 '@nextnm/nestjs-mailgun';
import { EmailOptions } from '@nextnm/nestjs-mailgun';
@Injectable()
export class YourService {
constructor(private mailgunService: MailgunService) {
await this.mailgunService.updateList('[email protected]', data);
}
}
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 '@nextnm/nestjs-mailgun';
import { EmailOptions } from '@nextnm/nestjs-mailgun';
@Injectable()
export class YourService {
constructor(private mailgunService: MailgunService) {
await this.mailgunService.listAddMember('[email protected]', data);
}
}
To get a member of the list Query is an object like:
{ subscribed?: 'yes' | 'no'; limit?: number; }
import { MailgunService } from '@nextnm/nestjs-mailgun';
import { EmailOptions } from '@nextnm/nestjs-mailgun';
@Injectable()
export class YourService {
constructor(private mailgunService: MailgunService) {
await this.mailgunService.listGetMembers('[email protected]', query);
}
}
To update member of the list
import { MailgunService } from '@nextnm/nestjs-mailgun';
import { EmailOptions } from '@nextnm/nestjs-mailgun';
@Injectable()
export class YourService {
constructor(private mailgunService: MailgunService) {
await this.mailgunService.listupdateMember(
'[email protected]',
'memberAddress',
data,
);
}
}
To destroy member of the list
import { MailgunService } from '@nextnm/nestjs-mailgun';
import { EmailOptions } from '@nextnm/nestjs-mailgun';
@Injectable()
export class YourService {
constructor(private mailgunService: MailgunService) {
await this.mailgunService.listDestroyMember(
'[email protected]',
'memberAddress',
);
}
}
Contributions welcome! See Contributing.
This project is not endorsed by or affiliated with Mailgun.
Nuno Carvalhão Site
Licensed under the MIT License - see the LICENSE file for details.