postmark
Version:
Official Node.js client library for the Postmark HTTP API - https://www.postmarkapp.com
24 lines • 813 B
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.Message = void 0;
var Message = /** @class */ (function () {
function Message(From, Subject, HtmlBody, TextBody, To, Cc, Bcc, ReplyTo, Tag, TrackOpens, TrackLinks, Headers, Attachments, Metadata) {
this.From = From;
this.To = To;
this.Cc = Cc;
this.Bcc = Bcc;
this.Subject = Subject;
this.ReplyTo = ReplyTo;
this.HtmlBody = HtmlBody;
this.TextBody = TextBody;
this.Tag = Tag;
this.TrackOpens = TrackOpens;
this.TrackLinks = TrackLinks;
this.Headers = Headers;
this.Attachments = Attachments;
this.Metadata = Metadata;
}
return Message;
}());
exports.Message = Message;
//# sourceMappingURL=Message.js.map