How do I edit Send button designated email address on a web form in Dreamweaver CS6?

I have a webform on our website for folks requesting information. There is a country button which folks select. The send button submits the form and there is some script somewhere that sends submissions from say a USA based enquirer to a USA email address, UK based enquirer to a UK address, etc. How can I edit the script that controls that function? I am a newbie in CS6 but am learning fast!

Hi Fritz
In the source code I have:
<td height="30" colspan="2"><div align="center">
                  <input type="submit" value="Send" />
              </div></td>
            </tr>
          </table>
        </form>
If I click on </form> in Properties the action box shows an asp file /gdform.asp on the root. I opened that and it has no site specific info, i.e. my URL or any email address.
The webform can be viewed on www.aboutmeco.org/opportunities/index.html   Ther you see the Send button is at the bottom of the webform, which corresponds to the source code.   Do you think I am looking at the right form tag?
Stephen

Similar Messages

  • How do i always send from one email address, even when replying?

    Hello all
    I just moved to MAIL after 12 years of Eudora.
    I’m MAIL 2.1.3 in Mac OS 10.4.11 PPC.
    my problem
    People send emails to me at 2 different email addresses. Both of them are stored on two different servers, and thus two different POP setups. Let us call them Eunice.net and Poppy.net
    I have MAIL setup to pull my emails off both different servers. I think it would be best to always send emails from one particular email address, ([email protected]) using the one particular email POP server. (Eunice.net)
    My problem is that when I get an email sent to me at Poppy.net, want to hit reply and have it go out by way of the Eunice.net SMPT (POP) server (and with the return address as [email protected]
    The problem is that I can’t find a way to configure my Preferences/Accounts to make this happen. As of now, I hit reply to an email sent to [email protected]… and it tries to send the email out via Poppy.net (and fails) - i get an error messsage.
    Thanks for any help!

    Mail, Preferences, Composing, Send New Mail from is indeed set properly - so this is why i'm baffled.
    Note that this setting is "Send New Mail from", in other words, when you create a New message, not Reply to an existing message. When you create a new message, does it do send from the specified account? Note that this will only work if no message is selected, else it will create the new message using the account of the selected email (assuming Mail can figure out the account from the header).
    The following is copied from the Mail help (note how it handles New messages and Replies differently):
    *+How is the "From" address determined in a new message or a reply?+*
    +Mail will try to determine the correct "From" address to use when you compose a new message or reply to a message.+
    *+When you compose a new message, the From address is selected in the following order:+*
    +If a message is currently selected, Mail uses the account the message belongs to, if it can be determined from the headers of the message, or by the IMAP mailbox the message resides in.+
    +If an IMAP mailbox is currently selected, Mail uses the account the IMAP mailbox belongs to.+
    +If no message or mailbox is selected, Mail uses the email address for the first account listed in the Accounts pane of Mail Preferences.+
    *+When you reply to a message, the From address is selected in the following order:+*
    +The To and Cc fields are compared to email addresses you have set up in Mail Preferences. Mail uses the first matching address it finds as the reply address.+
    +If the message is in an IMAP mailbox, Mail uses the email address for the account the mailbox belongs to.+
    +If all else fails, Mail uses the email address for the first account listed in the Accounts pane of Mail Preferences.+
    One way to ensure that the messages are sent using the Eunice.net SMPT (POP) server is to set that server as the SMTP server in your Poppy mail account (putting your Eunice settings in the SMTP server settings dialog). That won't address the ReplyTo issue (although you can set that manually in the ReplyTo field, accessed via the button next to the subject line).
    Hope this helps...

  • How do I edit the program facilitator email address in VPP

    I added a program facilitator id to my VPP program and now need to change the email address that is associated with it. How do I do that?

    Hi Fritz
    In the source code I have:
    <td height="30" colspan="2"><div align="center">
                      <input type="submit" value="Send" />
                  </div></td>
                </tr>
              </table>
            </form>
    If I click on </form> in Properties the action box shows an asp file /gdform.asp on the root. I opened that and it has no site specific info, i.e. my URL or any email address.
    The webform can be viewed on www.aboutmeco.org/opportunities/index.html   Ther you see the Send button is at the bottom of the webform, which corresponds to the source code.   Do you think I am looking at the right form tag?
    Stephen

  • How do I edit out the previous email addresses from the pop up list of address in Apple Mail?

    Whenever someone sends me a new email address, I go to address book and edit the page. The problem is that whenever I go to send an email and start to type the address in, the drop down menu lists possible entries as I type, and it still keeps the old address on that list, sometimes above the new address and if I don't carefully check, it will go out to the wrong address.
    It seems to hold onto the old addresses no matter what I do. I have edited, tossed out or changed in the address line of the email, and it still holds onto the old addresses.
    Any suggestions?
    Thanks.

    If I start an email to John Doe. I type in his name and if I look at the drop down menu when I click his name, it will offer several options, including "open in address book". Makes sense. He is already there.
    But some names, a few to be sure, have "add to address book" even though they are already there.
    And if I open the address book and open their page, I will see all the info, just as I should.
    But if I click on the "add to address book", the same email address is repeated on their page in the address book. So I could end up with the same email address 5 times on the page.
    Someone told me once that if I cannot cure the bug then I should consider it a "feature".

  • How to prevent users from seeing my email address in a mailto: form?

    I've created the form but everytime I test it my email opens up and shows who the form would be mailing to. I do not want users to be able to see my email address. Is there anyway to encrypt it or black it out, etc? 

    Alright, I have created my php form and everything works like I would like except for the information in the email. When I tested it I recieved an email with the body of my form but none of the information that was typed in. What do I need to do?
    php
    /* Subject and Email Variables */
        $emailSubject = 'Test Form';
        $webMaster = 'I blacked out my email';
    /* Gathering Data Variables */
        $emailField = $_POST['email'];
        $stateField = $_POST['state'];
        $districtField = $_POST['district'];
        $votersField = $_POST['voters'];
        $body = <<<EOD
    <br><hr><br>
    Email: $email <br>
    State: $state <br>
    District: $district <br>
    Voters: $voters <br>
    EOD;
        $headers = "From: $email\r\n";
        $headers .= "Content-type: text/html\r\n";
        $success = mail($webMaster, $emailSubject, $body, $headers);
    /* Results rendered as HTML */
        $theResults = <<<EOD
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Untitled Document</title>
    </head>
    <body>
    <p>Your email has been sent</p>
    <p> </p>
    </body>
    </html>
    EOD;
    echo "$theResults";
    ?>

  • HT2486 How can I send an email to all of the email addresses associated with one contact? Similarly, in regard to group lists, how do you include for distribution all email addresses associated with each contact in the group?

    Often times there are multiple email addresses associated with a single contact in address book.  How can I included all of these email addresses when creating an address book group?

    Don't be surprised.
    Apple offers free, basic Mail and Address Book apps and creates paid, more sophisticated solutions, also allowing Developers to provide more sophisticated solutions for sale in the marketplace.
    When I need to repeatedly email to multiple contacts, I create a blank draft email, and use the Address Book button to list the appropriate address book group. With the Address Book window open, it's easy to click to add multiple email addresses for a single contact name. Each is added to the message email address list. Then I save that blank email to iCloud Drafts, and it retains the email addreses I've entered. Next time I need to send a message I double-click on it in Drafts to open it, and drag it to one of my other email accounts to add Subject and details, then send from the other account.
    Message was edited by: kostby

  • I have an iphone 4 connected to my imac/itunes using a designated email address.  However, I also have an 80gb ipod classic which is connected to my general email account. How can I transfer my ipod to the same account as the iphone

    I have an iphone 4 connected to my imac/itunes account using its own designated email address. However, I also have an 80gb ipod classic which is connected to my general email address. How can I delete this and transfer the ipod to the same account as the iphone 4. Thankyou

    iPods, iPhones, and iPads aren't tied to one particular iTunes accout/Apple ID.  So there are no special instructions to follow to allow you to sync it with your newer account.  Simply sync it as you would your iPhone 4. 
    B-rock

  • How send SMS to email address - can't fnd "@"

    On my other phones I have had I can specify an email address as the recipient of an SMS message. I can't figure out how to do that on the iPhone if the recipient's email address is not already saved as my contacts, mainly because I cannot find the symbols like @ and . that are needed for an email address. I would like to know how to type in an email address on the fly in the "To" of an SMS message.
    Thanks!
    Jenn

    Also to clarify a bit more. Your old phone actually never did send a SMS to an email address. SMS can only go to numbers (phone numbers or special numbers like American Idol uses for voting). That is just how the protocol works.
    What your old phone did was mix SMS and MMS together and allowed you to enter an email because MMS allows email addresses. Thus you were really sending an MMS (even if you didn't include a picture and just put text).
    So, this is why the iPhone since the SMS app is just for SMS only allows the characters it allows for the SMS protocol. If you want to send to an email address, you will have to use your email program.

  • HT5557 since i updated my Apple ID with correct email address I can now only send imessages to email addresses and not iphone numbers - any idea how to fix this problem ?

    since i updated my Apple ID with correct email address I can now only send imessages to email addresses and not iphone numbers - any idea how to fix this problem ?

    You might want to try contacting Apple for assistance by going to https://expresslane.apple.com, then click See All Products and Services>iTunes>iTunes Store>Passwords & Security Questions>Lost or Forgotten Apple ID password.  They should be able to explain what's going on and help you reset the password for the old ID if necessary.  The call should be free.

  • How do i send a html email from office outlook web access?

    how do i send a html email from office outlook web access?

        glenholmes,
    You've come to the right place for help. Sorry to hear that you have had hard time with your Gmail app lately. What steps have you tried to get this to work? We want to ensure that you are able to start sending those messages right away.
    ErinW_VZW
    Follow us on Twitter @VZWSupport

  • How to create Procedure  send Notification to Email In Oracle Worfkflow

    Hi all!
    Now,I'm doing about oracle workflow and i want send my notification to email of my boss.
    I configured workflow mailer in my system and it cant send mail to any email address.
    I want when workflow running,it can send notification to my email of my boss but now it can't
    How i write procude send noticafiton to email?
    Please,tell me about it ?
    Thanks all

    Are you using the notification mailer within Oracle Applications (ebs)? If so, I would post to the Oracle Applications forum, someone there might be able to give you a better idea.

  • My outlook is sending two invites in the icloud calandar. How can I stop this? I ony want the email send with my email address not the apple email

    My MS outlook on the PC is sending two invites in the icloud calandar. How can I stop this? I ony want the email send with my email address not the apple email.

    My phone is the 4.  Not the 4s. And I went there but it's nowhere the option to delete from server.
    I only see: ask before deleting and it's on. 

  • HT204053 How do I set up a rescue email address if I already have an Apple ID?

    I have an Apple ID, but I did not set up a rescue email address.  Now I need a rescue email address in order to reset my security questions/answers.  How can I set up the rescue email address?

    You won't be able to add a rescue email address until you can answer your questions, so you will need to get them reset first - see if the instructions on this user tip helps you get them reset : https://discussions.apple.com/docs/DOC-4551
    When you can answer the questions you can then add a rescue email address for potential future use - from here :
    Navigate to appleid.apple.com using your web browser.
    Click "Manage your account"
    When prompted, sign in using your Apple ID and password.
    Click Password & Security
    You'll be asked to answer 2 of your 3 security questions before you can make any modifications. If you are unable to remember your answers, you can choose to send an email to your rescue email to reset your security questions.
    After you've validated your identity by correctly answering your security questions, click Edit to the right of your rescue email address.
    Once you've finished editing your rescue email address, click the Save button directly below the email field.

  • How do you change the default return email when distributing a PDF form

    Hello everyone,
    I am trying to distrube a pdf form as a customer survey to various client/contact emails.  As a test, I chose to distribute the form, filled in the form distribution information and I send the form to myself. However, when I filled it out and chose 'submit form' it prompted me with the return email address that I know is incorrect and want to change.
    As the author of the form, I need to change the default return email address, but there is no option to do so when I choose to distribute the pdf form  or any new form that I create (only prompted me the very first time I chose to distribute a form). 
    Does anyone know how to change the return email address and information for form distribution?  Can someone please help me with this? 
    Thank you very much!
    -Ryan

    The email address that it uses it what is set in the Identity user preference: Edit > Preferences > Identity > Email Address
    so change it there before you distribute.

  • How to remove a data usage alert email address

    I receive email alerts when my data usage gets to 75%, 90%, and 100% of usage. How do I remove one of the email addresses these alerts are being sent to (it is not one of my email addresses)?

    Verizon_Dan
    I understand your desire to update which email addresses receive the data usage alerts.  I would love to assist.
    When you log into your My Verizon account online, you can edit your alert settings (email addresses and phone numbers) within the "Manage My Account" section of your online account.  Under the "Manage My Account" tab on the left, click the "Manage Family Safeguards & Controls" link.  Then, under the "Usage Controls" tab, click "View Details & Edit".  Lastly, under the "Usage Limits" tab you will then be able to edit the email addresses that you want to receive email alerts.  Please let me know how this works out for you.
    AnthonyTa_VZW
    Follow us on Twitter @VZWSupport
    If my response answered your question please click the "Correct Answer" button under my response. This ensures others can benefit from our conversation. Thanks in advance for your help with this!!

Maybe you are looking for

  • ISight camera is no longer recognized

    iChat only allows me to audio chat and photobooth says there is no camera. Whats should i do?

  • How to find the right kstat info & interpret it ?

    Having found out how to read the kstat structures I am still struggling with finding the right information which makes sense! I am interested in the following statistics: 0. Swap Space - similar to that reported by swap 1. Scan rate similar to that r

  • Restrict user not to change the Price (Tx ME58)

    Hi, I have one requirement the User should not able to change the Price at the time of Converting PR to PO (Tx ME58) System should take the price from Pur Info Record and should not be able to create PO with different  Price. Is it Possible?If yes pl

  • Service not provided!!!

    I have been unable to use the product I purchased on 21/02/2014. Please help. The product is Adobe ExportPDF by my order AD00207706UK. No email was sent to me in confirmation and a key to enable me to install the product, and use it. I am so disappoi

  • Edit Package/Spec Body missing from browser

    v1.1.0.23 It seems I now have to open package specs and bodies independently. The prior version let me open both at the same time. Can this be added back in? Thanks