mirror of
https://github.com/CommunitySolidServer/CommunitySolidServer.git
synced 2024-10-03 14:55:10 +00:00
Complete rewrite of the account management and related systems. Makes the architecture more modular, allowing for easier extensions and configurations.
14 lines
289 B
TypeScript
14 lines
289 B
TypeScript
import { AsyncHandler } from '../../../../util/handlers/AsyncHandler';
|
|
|
|
export interface EmailArgs {
|
|
recipient: string;
|
|
subject: string;
|
|
text: string;
|
|
html: string;
|
|
}
|
|
|
|
/**
|
|
* A class that can send an e-mail.
|
|
*/
|
|
export abstract class EmailSender extends AsyncHandler<EmailArgs> {}
|