I just added this snippet to my etomite site, www.kompukit.com and it won't work...how come? Plus, what are are those "N's" for? in the code?
What error are you getting? Please describe in more detail what isn't happening.
And as far as the n's go, they should be written "\n" instead of "n." This is the newline special character and will act as a carriage return in the SOURCE code- as you look at the page in the browser, it actually has no effect.
So line's like:
$SendMail .= "</select><br><br>n";
should be:
$SendMail .= "</select><br><br>\n";
And it's worth mentioning that the "\n" only works inside double quotes strings, not single quotes strings:
// this works
$string = "Some string characters.\n";
// this doesn't work
$string = 'Some string characters.\n';
I learned that lesson the hard way