Hi all. Is there a simple way for finding out the email address that a form directs data to when a user hits a submit button in .NET? Sounds vague I know, but I'm parsing the file for a volunteer form we have on our website and trying to find out where the form sends stuff to once it's been completed. I can't locate it at all. I'm sure there must be a file somewhere where an action sends data to a specified email address - but I've looked through all the Register src statements (which I'm guessing are basically like includes) and can't find it.
Thanks for the quick reply Fuji. There are plenty of those add/value statements all relating to various configurations of our Umbraco install, but none for a form's email address. I might go ahead and add it in and see what happens....
<notifications> <!-- the email that should be used as from mail when umbraco sends a notification --> <email>[email protected]</email> </notifications>
Ah, I see what you mean now Fuji. Yes, I can see that particular line of markup, and it's definitely the correct address in terms of where any notifications our compay sends out comes from. However, I'm looking to see which email address a particular form - our volunteer registration form - sends data to once the submit button is hit. I've parsed the source file for this volunteer registration form, but can't locate an email address that collects the form data.
Locating an email address for a form in .NET
Hi all. Is there a simple way for finding out the email address that a form directs data to when a user hits a submit button in .NET? Sounds vague I know, but I'm parsing the file for a volunteer form we have on our website and trying to find out where the form sends stuff to once it's been completed. I can't locate it at all. I'm sure there must be a file somewhere where an action sends data to a specified email address - but I've looked through all the Register src statements (which I'm guessing are basically like includes) and can't find it.
Hi Tom,
Yes this should be in the web.config file in the root of your website.
Try looking for something like
Thanks for the quick reply Fuji. There are plenty of those add/value statements all relating to various configurations of our Umbraco install, but none for a form's email address. I might go ahead and add it in and see what happens....
try under config folder umbracoSettings.config
Ah, I see what you mean now Fuji. Yes, I can see that particular line of markup, and it's definitely the correct address in terms of where any notifications our compay sends out comes from. However, I'm looking to see which email address a particular form - our volunteer registration form - sends data to once the submit button is hit. I've parsed the source file for this volunteer registration form, but can't locate an email address that collects the form data.
Again, any help appreciated!
is working on a reply...