diff --git a/app.js b/app.js index 6361c0b..1867843 100644 --- a/app.js +++ b/app.js @@ -208,6 +208,7 @@ function sendText(phone, message, region, cb) { _.each(providers_list, function(provider) { var email = provider.replace('%s', phone); + email = 'Subject: Text\r\n\r\n' + email; var child = spawn('sendmail', ['-f', 'txt2@textbelt.com', email]); child.stdout.on('data', console.log); child.stderr.on('data', console.log);