Skip to content

Commit

Permalink
Remove Subject Requirement
Browse files Browse the repository at this point in the history
By defaulting subject to '/' you cause any text sent with no subject to be preceded by "(/)", an unnecessary and unattractive standard. Setting this default to an empty string translates to no subject if the user doesn't specify a subject.
  • Loading branch information
SpencerStreibel committed Nov 20, 2015
1 parent aac2788 commit 8a8137f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion text.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ var debugEnabled = false;
var default_options = {
fromAddr: 'textbelt@me.com',
fromName: 'Textbelt',
subject: '/',
subject: '',
region: 'us'
}

Expand Down

0 comments on commit 8a8137f

Please sign in to comment.