Updating an email address for an e-form...

Please ensure that it is really just this simple...
You find the .txt file associated with the page that has the
particular e-form, and simply change the email address within the
.txt file.
And then it will send to a new person, right?! : ) -- You
don't need to update anything within the actual HTML file, correct?
Thank you!

r_tist wrote:
> Hi!
>
> Whoops...I think I met to say the .PL file within the
CGI bin. Does
> that help at all?
> I don't have the page or link ready yet, but someone
wanted to check
> if I could help them out with that.
>
> How complex could a task like that get, by the way?
>
> Many Thanks!
If it's just a .pl file containing the script with the email
address in,
then yes, it should just be a case of editing the file and
reuploading it.
Your reference to a .txt file made it sound like something
that could get
complex!
Regards,
Pete.
Peter Connolly
http://www.acutecomputing.co.uk
Derby
UK
Skype ID: acutecomputing

Similar Messages

  • Need to update email address for icloud

    I cannot figure out how to update my email address for icloud

    If your phone is signed into an old iCloud ID and you are trying to change it to a newer version of the ID, do the following:
    If you are using iMessage and FaceTime, make sure you are signed into these services with your current ID.  If they are signed into the old ID, go to Settings>Messages>Send & Receive and Settings>FaceTime, tap the ID, sign out, then sign back in with your current ID.
    Then temporarily recreate the old ID by going to https://appleid.apple.com, click Manage my Apple ID and sign in with your current iCloud ID.  Click edit next to the primary email account, change it back to your old email address and save the change.  (You should not have to verify the old email account so it doesn’t matter if you no longer have access to it.)  Now go to Settings>iCloud, turn off Find My iPhone and enter your current password when prompted (even though it prompts you for the password for your old ID).  Then save any photo stream photos that you wish to keep to your camera roll.  When finished go to Settings>iCloud, tap Sign Out (or Delete Account if you are not running iOS 8) and choose Delete from My iPhone when prompted (your iCloud data will still be in iCloud).  Next, go back to https://appleid.apple.com and change your primary email address back to the way it was.  Now you can go to Settings>iCloud and sign back in with your current iCloud ID and password (your data will download back to your device).

  • Email addresses for Forms

    If I subscribe to forms central, I would like to create a form per email address for about 8 forms at the moment. Is this possible???

    Thanks Wenlan
    Sorry for the confusion.
    I have 8 forms that I need to create that need separate email addresses to go to different departments.
    The other option I have is to subscribe to forms central with another email address and set up rules to send the form replies off to the other addresses when they arrive.
    Hope that makes more sense
    Suzanne

  • System Email Address for Remittance Advice

    Hello,
    We currently send the Remittance Advice by email to Supplier.
    The sender address on the email to Supplier is [email protected] and we would like to change this sender address to [email protected]
    We can see that the default email address for all output forms can be changed in Fine Tuning Activity 'E-mail and Fax Settings' and it is currently [email protected] However we want to use a specific address for the Purchase Order email and another for the Remittance Advice email.
    Can anyone tell us where we set the Remittance (or Purchase Order) specific email address ?
    Thanks,
    Kevin.

    Hi Kevin,
    As a standard behavior, the system sends an e-mail from buyer responsible address and not from default sender address. Default sender address will be used if there is no document-specific sender address. It means that if the buyer responsible does not maintain e-mail address, then system will send the Purchase Order from default sender e-mail address; else it will be consider the buyer responsible contact data.
    Regards,
    Fabio.

  • ICal won't update new email address

    Hi,
    I am having trouble updating my email address for iCal. It's stuck using an old address... so anytime I try to set the alarm the email just bounces.
    I've tried updating my card in my address book several different times and deleted any and all duplicates but it just wont take. It keeps reverting back to the old address.
    Anybody have any ideas how I might be able to shake loose that old address and get iCal to shift over to the new one.
    Thanks much
    Bob

    Make sure your old address is not in Mail's Previous Recipients.
    AK

  • Updation of email address in the sales document

    Hello People,
    I have a requirement to update the mail adress for a certain partner function in a sales document in the user exit.
    As in for e,g i would have to update the email address for the ship to party in a sales document header,
    This is required because the address details in a sales document is independent of the customer master data. So any changes made here does not over write the master data.
    But i am not able to find a structure with the mail address field in the user exit .
    Could you suggest how this could be done ?
    Suggestion would be appreciated and rewarded
    Thankyou

    Hi Brijesh,
    Proceed as follows.
    You can use the SELECT SINGLE <field> ..... stmt to retrieve the address number of the customer (ship to party).
    or
    1. Execute SE37 and input the FM KNA1_SINGLE_READER
    2. execute this fumction module and input the customer number.. again execute.
    3. This function module will return the details of the customer in the O_KNA1 output parameter. Take a note of the address number KNA1-ADRNR
    4. Now pass this address number to the FM ADDR_GET_COMPLETE input parameter ADDRNUMBER.
    5. Now run the FM and you can check that this one returns you the email info as well.
    Try the following code in SE38 and then implement to your requirement.
    REPORT  ZSDN_CUST_ADDRESS.
    TYPE-POOLS: szadr.
    data: i_kunnr TYPE kna1-kunnr VALUE '66',
          addrnr  TYPE ADDR1_SEL-ADDRNUMBER.
    data: o_kna1  type kna1,
          i_addr  type SZADR_ADDR1_COMPLETE,
          wa_smtp LIKE LINE OF i_addr-ADSMTP_TAB.
    CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
      EXPORTING
        INPUT         = i_kunnr
      IMPORTING
        OUTPUT        = i_kunnr.
    CALL FUNCTION 'KNA1_SINGLE_READER'
      EXPORTING
        I_KUNNR                  = i_kunnr
        I_BYPASSING_BUFFER       = 'X'
      IMPORTING
        O_KNA1                   = o_kna1
      EXCEPTIONS
        NOT_FOUND                = 1
        PARAMETER_ERROR          = 2
        INTERNAL_ERROR           = 3
        OTHERS                   = 4.
    IF sy-subrc IS INITIAL.
      move o_kna1-adrnr to addrnr.
      CALL FUNCTION 'ADDR_GET_COMPLETE'
        EXPORTING
          ADDRNUMBER                    = addrnr
          IV_CURRENT_COMM_DATA          = 'X'
        IMPORTING
         ADDR1_COMPLETE                = i_addr
        EXCEPTIONS
          PARAMETER_ERROR               = 1
          ADDRESS_NOT_EXIST             = 2
          INTERNAL_ERROR                = 3
          WRONG_ACCESS_TO_ARCHIVE       = 4
          OTHERS                        = 5.
    ENDIF.
    LOOP AT i_addr-ADSMTP_TAB INTO wa_smtp.
       WRITE:/ wa_smtp-ADSMTP-SMTP_ADDR.
    ENDLOOP.

  • How do I update my ipod touch with my  new email address for my  itunes account?

    How do I update my ipod touch with my new email address for my itunes account?  I recently changed my email address and updated it on my itunes account but now my ipod keeps asking me for the password associated with my old email address.

    I did this and I still get a error message about either the
    password or the email account is incorrect!

  • After I updated to iOS 7, my iCloud account is showing the incorrect email address for my Apple ID but will not allow me to change it- it's gray and I can't click on it. How do I fix this?

    After I updated to iOS 7, my iCloud account is showing the incorrect email address for my Apple ID but will not allow me to change it- it's gray and I can't click on it. How do I fix this?

    If you change your email, you do not need to "change" your AppleID. Just edit your email(s) on your Apple ID by logging in to your AppleID account. You should always use the same AppleID for  Apple Services (iCloud, iTunes etc) and multiple ID will cause problems and confusion in the future.
    You can manage your Apple ID here:
    https://appleid.apple.com

  • IMovie and iPhoto App Store update has alternate email address for user name. how do I fix this??

    The most recent updates to iPhoto and iMovie, that are in the App Store updates, has my alternate email address for my user name.  I can't log into the update because I don't know the password.  I have changed my user name to reflect the correct email address, but it still prompts as the alternate email address.  Any ideas as how to fix??

    If you have forgotten your pass work go to here:
    https://iforgot.apple.com/password/verify/appleid
    Geoff.

  • HT5312 forgot answers for security questions, my apple account has updated email address but the rescue email address  for account is old and not accessible - do not know how to update that address so i can authorize new devices...

    forgot answers for security questions, my apple account has updated email address but the rescue email address  for account is old and not accessible - do not know how to update that address so i can authorize new devices...

    Welcome to the Apple Community.
    Start here (change country if necessary) and navigate to 'Password and Security', reset your security questions using the link provided, you will receive an email to your rescue address, use the link in the email and reset your security questions.
    If that doesn't help, you don't receive a reset email or you don't have a rescue address, you should contact AppleCare who will initially try to assist you with a reset email or if unsuccessful will pass you to the security team to reset your security questions for you.
    If you are in a region that doesn't have international telephone support try contacting Apple throughiTunes Store Support.

  • Updating email address for the vendor

    Hi All,
    We are trying to update the email address of the vendor and for this we have written the following code... but somehow it's not working.. I went to FK03 but the email address is still the old one... can you please suggest if I am missing something:
    DATA:  ls_adr6             TYPE  adr6,
          lt_adr6              TYPE TABLE OF adr6 WITH HEADER LINE,
           lv_returncode LIKE szad_field-returncode,
           it_error            TYPE TABLE OF addr_error WITH HEADER LINE,
           lt_adsuse LIKE adsuse OCCURS 0 WITH HEADER LINE.
    SELECT-OPTIONS: w_addr FOR ls_adr6-addrnumber.
    lt_adr6-client = sy-mandt.
    lt_adr6-addrnumber = w_addr-low.
    lt_adr6-date_from  = '00010101'.
    lt_adr6-consnumber = '001'.
    lt_adr6-flgdefault = 'X'.
    lt_adr6-home_flag = 'X'.
    lt_adr6-smtp_addr = 'test.yahoo.com'.
    lt_adr6-smtp_srch = 'TEST.YAHOO.COM'.
    APPEND lt_adr6 TO lt_adr6.
    *lt_adsuse-consnumber = '001'.
    *lt_adsuse-comm_usage = 'AD_DEFAULT'.
    *lt_adsuse-def_usage = 'X'.
    *lt_adsuse-updateflag = 'U'.
    *APPEND lt_adsuse.
    CALL FUNCTION 'ADDR_COMM_MAINTAIN'
      EXPORTING
        address_number    = w_addr-low
        table_type        = 'ADSMTP'
      IMPORTING
        returncode        = lv_returncode
      TABLES
        comm_table        = lt_adr6                             "*660i
        error_table       = it_error
    *    it_usage          = lt_adsuse                           "*981i
      EXCEPTIONS
        parameter_error   = 01
        address_not_exist = 02
        internal_error    = 03.
    IF sy-subrc = 0.
       CALL FUNCTION 'ADDR_MEMORY_SAVE'
    * EXPORTING
    *   EXECUTE_IN_UPDATE_TASK       = ' '
       EXCEPTIONS
         address_number_missing       = 1
         person_number_missing        = 2
         internal_error               = 3
         database_error               = 4
         reference_missing            = 5
         OTHERS                       = 6
      IF sy-subrc = 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
      CALL FUNCTION 'ADDR_MEMORY_CLEAR'
    * EXPORTING
    *   FORCE                    = ' '
       EXCEPTIONS
         unsaved_data_exist       = 1
         internal_error           = 2
         OTHERS                   = 3
      IF sy-subrc = 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
      CALL FUNCTION 'ADDR_SINGLE_SAVE'
        EXPORTING
          address_number               = w_addr-low
    *   ADDRESS_TYPE                 = 1
         execute_in_update_task       = 'X'
       EXCEPTIONS
         address_not_exist            = 1
         person_not_exist             = 2
         address_number_missing       = 3
         reference_missing            = 4
         internal_error               = 5
         database_error               = 6
         parameter_error              = 7
         OTHERS                       = 8.
      IF sy-subrc = 0.
        COMMIT WORK.
      ENDIF.
    *IF sy-subrc <> 0.
    ** MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    **         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    Thanks,
    Raj
    Edited by: rajatg on Sep 23, 2009 6:47 PM

    Hi All, We are trying to update the email address of the vendor and for this we have written the following code... but somehow it's not working.. I went to FK03 but the email address is still the old one... can you please suggest if I am missing something:
    DATA:  ls_adr6             TYPE  adr6,
          lt_adr6              TYPE TABLE OF adr6 WITH HEADER LINE,
           lv_returncode LIKE szad_field-returncode,
           it_error            TYPE TABLE OF addr_error WITH HEADER LINE,
           lt_adsuse LIKE adsuse OCCURS 0 WITH HEADER LINE.
    SELECT-OPTIONS: w_addr FOR ls_adr6-addrnumber.
    lt_adr6-client = sy-mandt.
    lt_adr6-addrnumber = w_addr-low.
    lt_adr6-date_from  = '00010101'.
    lt_adr6-consnumber = '001'.
    lt_adr6-flgdefault = 'X'.
    lt_adr6-home_flag = 'X'.
    lt_adr6-smtp_addr = 'test.yahoo.com'.
    lt_adr6-smtp_srch = 'TEST.YAHOO.COM'.
    APPEND lt_adr6 TO lt_adr6.
    *lt_adsuse-consnumber = '001'.
    *lt_adsuse-comm_usage = 'AD_DEFAULT'.
    *lt_adsuse-def_usage = 'X'.
    *lt_adsuse-updateflag = 'U'.
    *APPEND lt_adsuse.
    CALL FUNCTION 'ADDR_COMM_MAINTAIN'
      EXPORTING
        address_number    = w_addr-low
        table_type        = 'ADSMTP'
      IMPORTING
        returncode        = lv_returncode
      TABLES
        comm_table        = lt_adr6                             "*660i
        error_table       = it_error
    *    it_usage          = lt_adsuse                           "*981i
      EXCEPTIONS
        parameter_error   = 01
        address_not_exist = 02
        internal_error    = 03.
    IF sy-subrc = 0.
      WRITE: 'COMM_MAINTAIN successful?'.
       CALL FUNCTION 'ADDR_MEMORY_SAVE'
    * EXPORTING
    *   EXECUTE_IN_UPDATE_TASK       = ' '
       EXCEPTIONS
         address_number_missing       = 1
         person_number_missing        = 2
         internal_error               = 3
         database_error               = 4
         reference_missing            = 5
         OTHERS                       = 6
      IF sy-subrc = 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
      CALL FUNCTION 'ADDR_MEMORY_CLEAR'
    * EXPORTING
    *   FORCE                    = ' '
       EXCEPTIONS
         unsaved_data_exist       = 1
         internal_error           = 2
         OTHERS                   = 3
      IF sy-subrc = 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
      CALL FUNCTION 'ADDR_SINGLE_SAVE'
        EXPORTING
          address_number               = w_addr-low
    *   PERSON_NUMBER                = '22280'
    *   ADDRESS_TYPE                 = 1
         execute_in_update_task       = 'X'
       EXCEPTIONS
         address_not_exist            = 1
         person_not_exist             = 2
         address_number_missing       = 3
         reference_missing            = 4
         internal_error               = 5
         database_error               = 6
         parameter_error              = 7
         OTHERS                       = 8.
      IF sy-subrc = 0.
        COMMIT WORK.
      ENDIF.
    *IF sy-subrc <> 0.
    ** MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    **         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    Edited by: rajatg on Sep 23, 2009 7:00 PM
    Edited by: rajatg on Sep 23, 2009 7:01 PM

  • Having trouble verifying my rescue email address for my daughters iPad update. Each time I put in my apple id and password it is rejected

    I Am having trouble verifying my rescue email address for my daughters iPad software update. Every time I put in my apple id and password it is rejected. I know it's right because I used it to sign in here v

    If you do not have a Rescue email (secondary email), you need to contact apple support, they will guide you through the process of resetting your security questions.
    https://ssl.apple.com/emea/support/itunes/contact.html

  • When i first typed my email address for the apple id i made a mistake

    When i first typed my email address for the apple id i made a mistake and now i can't update apps 'cause that wrong id appears, i can neither erase it,how can i solve it? Thanks

    Go here > https://appleid.apple.com/cgi-bin/WebObjects/MyAppleId.woa/
    Manage your Apple ID. You will need to sign in with the typo email and then you can change it.
    If you don't know the typo email you can use the link to start over with a new Apple ID
    Hope that halps

  • I changed my email address for my Apple ID but my phone doesn't recognize my new email it keeps asking for my password for my old email

    I changed my email address for my Apple ID. When I want to use iCloud my iPhone doesn't seem to recognize my new email it keeps asking for my password for my old email. I can't update the new address it keeps defaulting to my old one.

    Hello TirEoghain,
    Thanks for using Apple Support Communities.
    First I would like you to try the instructions below to sign out of your iCloud account, and then sign in with your new Apple ID.
    iOS 6 and later: Go to Settings > iCloud.
    If you signed out before changing your Apple ID, enter your current Apple ID to sign in. The data from your iCloud account will download to your device.
    If you're still signed in with your previous Apple ID:
    Scroll down and tap Delete Account. Depending on what iCloud options are turned on, you'll be asked to confirm that you want to delete data from your device. To confirm, tap Delete. (If you're using iOS 7 and have Find My iPhone turned on, you'll be asked to enter the password for your previous Apple ID. Enter the password, then tap Turn Off.) The data will be deleted from your device, but not from iCloud.
    Enter your current Apple ID to sign in. The data from your iCloud account will download again to your device.
    Apple ID: What to do after you change your Apple ID
    http://support.apple.com/kb/HT5796
    Change your Apple ID to the Apple ID you used previously. You shouldn't need to verify the email address.
    Go to Settings > iCloud. Complete these steps only if the Find My [Device] setting is turned on:
    Scroll down and tap Delete Account, then tap Delete to confirm.
    Tap “Keep on My [Device]” or “Delete from My [Device].” In either case, your data remains in iCloud and will be updated on your device when you sign in to iCloud again.
    Enter the password for your previous Apple ID.
    Change your Apple ID to the new email address that you want to use. You'll need to verify the email address.
    Return to Settings > iCloud and sign in with your new Apple ID.
    iOS 7: If you're asked for the password to your previous Apple ID when signing out of iCloud
    http://support.apple.com/kb/TS5223
    Take care,
    Alex H.

  • Is there really not an email address for tech support that you (or I, if absolutely need be) could forward my below email to?  ( I really do not want to waste time being put on hold on the phone.)  Issues times 3 - Regarding iPad 2 with IOS 7:  1.)  I can

    Is there really not an email address for tech support? ( I really do not want to waste time being put on hold on the phone.)
    However, I have 3 Issues Regarding iPad 2 with IOS 7:
    1.)  I can no longer open up the apps from the update page. (I used to be
    able to &amp; it was a quick way of making certain that I wanted to keep an app
    before I updated it.
    2.)  I have many apps that I have updated since installing the new
    operating system &amp; they now have "open" symbols next to them, but I don't
    know how to get them off of my update list (since that has already been
    done to them).
    3.)  My iPad has gotten stuck or frozen more in this last week since the
    new update then has in the last 2 years put together. (It seems to be stemming from the "Updates" page as sometimes  that page is just white &amp; will not open, even though everything else opens &amp; I have an internet connection.)

    Try this  - Reset the iPad by holding down on the Sleep and Home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider - let go of the buttons. (This is equivalent to rebooting your computer.) No data/files will be erased. http://support.apple.com/kb/ht1430http://support.apple.com/kb/ht1430
     Cheers, Tom

Maybe you are looking for