Copied to clipboard

Flag this post as spam?

This post will be reported to the moderators as potential spam to be looked at


  • Tom 28 posts 48 karma points
    Sep 16, 2013 @ 09:05
    Tom
    0

    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.

     

  • Fuji Kusaka 2203 posts 4220 karma points
    Sep 16, 2013 @ 09:13
    Fuji Kusaka
    0

    Hi Tom,

    Yes this should be in the web.config file in the root of your website.

  • Fuji Kusaka 2203 posts 4220 karma points
    Sep 16, 2013 @ 09:14
    Fuji Kusaka
    0

    Try looking for something like

       <add key="from" value="[email protected]" />
  • Tom 28 posts 48 karma points
    Sep 16, 2013 @ 09:21
    Tom
    0

    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....

  • Fuji Kusaka 2203 posts 4220 karma points
    Sep 16, 2013 @ 09:24
    Fuji Kusaka
    0

    try under config folder umbracoSettings.config

     <notifications>
                <!-- the email that should be used as from mail when umbraco sends a notification -->
                <email>[email protected]</email>
            </notifications>
  • Tom 28 posts 48 karma points
    Sep 24, 2013 @ 09:05
    Tom
    0

    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!

Please Sign in or register to post replies

Write your reply to:

Draft