When building an SMS app, there are some "reserved" keywords, such as HELP and STOP that are commonly expected to perform a certain function.
MMA (Mobile Marketing Association) has published the following best practices: http://mmaglobal.com/bestpractices.pdf
After reading the document, I made a list of the following reserved keywords that should be handled:
- STOP (means opt-out)
- HELP (means send help info)
- OPT OUT or OPTOUT or OPT-OUT (means opt-out)
- END (means opt-out)
- MORE (means opt-in)
- CONTINUE (means opt-in)
- ADD (means opt-in)
I have also seen services treating curse words as an opt-out request.
What other keywords should be reserved and handled globally? What is the expected behavior?