1.) Googled for "encrypt message in spam"
2.) First hit I got is http://www.spammimic.com/
3.) Copied'n'pasted the text there
4.) Hit "decode"
5.) Done in a minute.
Basically, the method consists of a predefined Huffman tree and a non-ambiguous context free grammar in Greibach normal form.
Take the following production:
noun -> Johnny | Drake
When parsing a text, whenever Johnny is found in place of a "noun", a 0 is noted (first choice); whenever Drake is found in place of a "noun", a 1 is noted (second choice). Thus, the spam message yields a sequence of bits that are then decoded using a Huffman tree.
Unfortunately, the grammar on SpamMimic is not disclosed.
However, for anyone interested, this is roughly how the method works.