Can someone tell me how to remove the 'other' option from sendmessage.php, or at least change where THAT option is emailed to?
Specifying an email address or userid for the contact us options works well enough, but I want to use a donotreply option as the forum outgoing address, with any and all replies deleted (they do get an autoreply saying that their message was never read by a human, and directing them to the links on the actual website.)
I find this works best and prevents people from replying to PM notifications with stuff that I really DO NOT want to see or read :P
But I need to redirect that auto-generated Other option in sendmessage.php, or delete it, for my scheme to work properly...
Thanks in advance,
--------------- Added [DATE]1221516148[/DATE] at [TIME]1221516148[/TIME] ---------------
Ha. Murphy's Law rules again. Answered my own question.
here's the how, in case this helps someone else:
Open the Contactus template and remove the following code, which will limit the contact us options to the predefined titles and destinations you want.
Code:
<label for="rb_subjother"><input type="radio" name="subject" value="other" id="rb_subjother" />$vbphrase[other]</label>
<input type="text" class="bginput" name="other_subject" size="40" maxlength="85" />
If anyone with more knowledge knows of a reason I shouldn't be doing this, please speak up!