I got the PHP email program that Cory built working, thanks Corey, (Sorry Bruce, I don’t know enough to help you out). I don’t mean to look a gifted horse in the mouth, but I’m having a little problem that maybe someone help with. If the message part of the email contains an apostrophe mark, the resulting email that gets sent adds a backslash. So if I post a message that says Jim’s, the received email says Jim\’s.
I wonder if there is a way to fix this on the resulting email. I’ve tried to replace the apostrophe mark with the ASCII equivalent, before the post gets sent, but this doesn’t seem to work. Then again I might be doing something wrong. I’ve tried the decimal and the hex ASCII equivalents, (0027 and 039) I tried proceeding them with different combinations of the &, #, And % signs, but I can’t find a combination that works.
Preferably, I’d like a solution that allows me to replace the character on the AMS side, before the request gets posted to the PHP program, because I’m not smart enough to re-write the PHP program.
I hope that I made my question clear. Thanks for any suggestions, or help.
I wonder if there is a way to fix this on the resulting email. I’ve tried to replace the apostrophe mark with the ASCII equivalent, before the post gets sent, but this doesn’t seem to work. Then again I might be doing something wrong. I’ve tried the decimal and the hex ASCII equivalents, (0027 and 039) I tried proceeding them with different combinations of the &, #, And % signs, but I can’t find a combination that works.
Preferably, I’d like a solution that allows me to replace the character on the AMS side, before the request gets posted to the PHP program, because I’m not smart enough to re-write the PHP program.
I hope that I made my question clear. Thanks for any suggestions, or help.
Comment