issues
search
davidturner
/
gulp-mailgun
My first ever gulp.js package, allowing users to send mails using Mailgun.
MIT License
7
stars
2
forks
source link
Improve performance
#3
Closed
nobuti
closed
8 years ago
nobuti
commented
8 years ago
This PR improve performance mainly.
the
this.push(file)
is going to queue it up and unless you have a stream on the other end of it it'll just buffer and then stop when it reaches 16.
the
subject
key in the config json file is optional. If it's not present, the file name becomes subject. This is handy for testing in Litmus.
the filename is used by the console to show what file is sending.
This PR improve performance mainly.
this.push(file)
is going to queue it up and unless you have a stream on the other end of it it'll just buffer and then stop when it reaches 16.subject
key in the config json file is optional. If it's not present, the file name becomes subject. This is handy for testing in Litmus.