mailersend
Version:
Node.js helper module for MailerSend API
18 lines (17 loc) • 645 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.BlockListType = exports.Recipient = void 0;
const Sender_1 = require("./Sender");
class Recipient extends Sender_1.Sender {
constructor(email, name) {
super(email, name);
}
}
exports.Recipient = Recipient;
var BlockListType;
(function (BlockListType) {
BlockListType["BLOCK_LIST"] = "blocklist";
BlockListType["HARD_BOUNCES_LIST"] = "hard-bounces";
BlockListType["SPAM_COMPLAINTS_LIST"] = "spam-complaints";
BlockListType["UNSUBSCRIBES_LIST"] = "unsubscribes";
})(BlockListType || (exports.BlockListType = BlockListType = {}));