Announcement

Collapse
No announcement yet.

Form - "Your email has been sent" - way to alter it?

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Form - "Your email has been sent" - way to alter it?

    Hello, ive altered the form to add extra line, and works fine. There are quite of a few being sent. when the form has been processed, you get a

    Your email has been sent
    Please wait for your browser to forward you to the next page or click here

    But this happens really quick - 2-3 seconds or so. 2 clients have actually phoned up because they didnt know whether the process had worked (whether they have been lazy and looking at something else most likely!). Either way, it would be easier if the final info NOT to be sent back to the original form - is there a way to do this? Thank you for any help.

    #2
    Hi,

    I can tell you how to delay the bounce page but not how to stop it.

    - browse to your site folder and open Mailform.pl in a text editor such as notepad
    - search for:

    Code:
    @Response = ACTINIC::BounceToPageEnhanced
    - you should see:

    Code:
    @Response = ACTINIC::BounceToPageEnhanced(5, ACTINIC::GetPhrase(-1, 1962) . $sError . ACTINIC::GetPhrase(-1, 1970),
    - change '5' in the following to the number of seconds you want to delay the bounce by:

    Code:
    ACTINIC::BounceToPageEnhanced(5,
    - save and close the file
    - update your site

    If you still want the page to not bounce back let me know and I'll ask development as I couldn't get this to work (my perl knowledge is extremely limited I'm afraid).

    Actinic is not able to provide any detailed support for script changes made. If you find that there is a problem, an original copy of the script can be found within the 'Original' folder in your installation. Copy this into your site folder.
    ********************
    Tracey
    SellerDeck

    Comment

    Working...
    X