@adonisjs/mail
Version:
Mail provider for adonis framework and has support for all common mailing services to send emails
20 lines (19 loc) • 483 B
TypeScript
import { BaseCommand } from '@adonisjs/core/ace';
import type { CommandOptions } from '@adonisjs/core/types/ace';
export default class MakeMail extends BaseCommand {
static commandName: string;
static description: string;
static options: CommandOptions;
/**
* The name of the mail file.
*/
name: string;
/**
* Define the intent suffix for the mail
*/
intent?: string;
/**
* Execute command
*/
run(): Promise<void>;
}