UNPKG

mailosaur

Version:

The Mailosaur Node library lets you integrate email and SMS testing into your continuous integration process.

11 lines (9 loc) 218 B
class MessageReplyOptions { constructor(data = {}) { this.text = data.text; this.html = data.html; this.attachments = data.attachments; this.cc = data.cc; } } module.exports = MessageReplyOptions;