mailersend
Version:
Node.js helper module for MailerSend API
13 lines (12 loc) • 363 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.Attachment = void 0;
class Attachment {
constructor(content, fileName, disposition = "attachment", id) {
this.content = content;
this.filename = fileName;
this.disposition = disposition;
this.id = id;
}
}
exports.Attachment = Attachment;