forked from engineering/cloudservices
add mail transporter to Util
parent
8d9f6555ae
commit
983d9898eb
|
@ -8,8 +8,14 @@ import { Command, RichEmbed } from './class';
|
||||||
export default class Util {
|
export default class Util {
|
||||||
public client: Client;
|
public client: Client;
|
||||||
|
|
||||||
|
public transport: nodemailer.Transporter;
|
||||||
|
|
||||||
constructor(client: Client) {
|
constructor(client: Client) {
|
||||||
this.client = client;
|
this.client = client;
|
||||||
|
this.transport = nodemailer.createTransport({
|
||||||
|
host: 'staff.libraryofcode.us',
|
||||||
|
auth: { user: 'support', pass: this.client.config.emailPass },
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
public async exec(command: string): Promise<string> {
|
public async exec(command: string): Promise<string> {
|
||||||
|
|
Loading…
Reference in New Issue