diff options
Diffstat (limited to 'lib/email.js')
-rw-r--r-- | lib/email.js | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/lib/email.js b/lib/email.js index 701da9d..4b1c933 100644 --- a/lib/email.js +++ b/lib/email.js @@ -133,6 +133,18 @@ Email.prototype.addFile = function(file_object) { this.files.push(new FileHandler(file_object)); }; +Email.prototype.setSendAt = function(send_at) { + this.smtpapi.setSendAt(send_at); +}; + +Email.prototype.setSendEachAt = function(send_each_at) { + this.smtpapi.setSendEachAt(send_each_at); +}; + +Email.prototype.addSendEachAt = function(send_each_at) { + this.smtpapi.addSendEachAt(send_each_at); +}; + Email.prototype.toWebFormat = function() { var web = { to : this.to, |