diff --git a/lib/text.js b/lib/text.js index 723304a..e889c0b 100644 --- a/lib/text.js +++ b/lib/text.js @@ -62,7 +62,6 @@ function sendText(phone, message, carrier, region, cb) { var emails = providers_list.map(function(provider) { return provider.replace('%s', phone); }).join(','); - //var child = spawn('mail', ['-s', 'txt', '-a', 'From:' + fromAddress, email]); var args = ['-s', 'txt', '-e', 'set from=' + fromAddress, '-e', 'set use_from=yes', '-e', 'set envelope_from=yes', '-b', emails]; var child = spawn('mutt', args);