Feb 11th, 2012, 2:05 AM
Hey,
Huh...! So you want all emails to be sent to the same email address, regardless of the name supplied? Interesting use-case.
But you can't really do that without editing the code, unfortunately - and even that may take some work. One solution (simpler, but complete hack) would be to add a hidden field to your form like:
Then use that as the recipient email. It's ugly, since it would store that dud field value in every submission, but it would work fine and let you get the job done.
- Ben
btw, AWESOME forum name. I was 100% sure you were a spammer, so your post was a nice surprise.
Huh...! So you want all emails to be sent to the same email address, regardless of the name supplied? Interesting use-case.
But you can't really do that without editing the code, unfortunately - and even that may take some work. One solution (simpler, but complete hack) would be to add a hidden field to your form like:
Code:
<input type="hidden" name="placeholder_email" value="my@company.com" />
Then use that as the recipient email. It's ugly, since it would store that dud field value in every submission, but it would work fine and let you get the job done.
- Ben
btw, AWESOME forum name. I was 100% sure you were a spammer, so your post was a nice surprise.