Adobe muse CC contact form not emailing correctly

the adobe muse contact form not emailing to address in form. it's correct within form, link in Muse, and the address is correct within web hosting files. please advise. thx

Responded to your other thread - http://forums.adobe.com/message/5555450#5555450.
Thanks,
Vinayak

Similar Messages

  • ColdFusion contact form by email - please help

    Hello,
    I tried to create a contact form, using email to send, and I
    have some issues and questions:
    1. I like to have a message "Your form has been sent", but it
    shows the blank after user submited the form.
    2. If user enter her email address, this form will send to
    her email address and me, but it does not send to her email
    address.
    Can anyone please take a look at my code below?
    Why I don't get the output (result) I like to have?
    Thanks very much.
    Jenny.
    <cfif IsDefined("form.Subject")>
    <cfprocessingdirective suppresswhitespace="no">
    <cfmail subject="#form.Subject#" from="#form.From#"
    to="[email protected]" >
    This is a message from that form...
    #form.Message#
    </cfmail>
    </cfprocessingdirective>
    <cfelse>
    <cfform action="#CGI.SCRIPT_NAME#" method="post"
    name="frmName">
    name <cfinput type="text" name="Name" size="20"><br
    />
    email <cfinput type="text" name="Email"
    size="20"><br />
    Subject <cfinput type="text" name="Subject"
    size="20"><br />
    Message <textarea name="Message" cols="30" rows="3"
    ></textarea><br />
    <input type="submit" value="Submit it" />
    </cfform>
    <cfif isDefined("FORM.Name")>
    <cfmail subject="#form.Subject#" from="#form.From#"
    to="#Email#" >
    </cfif>
    <cfif isDefined("FORM.Submit")>
    <p>Your message has been sent</p>
    <cfelse>
    <cflocation addtoken="no" url="survey2.cfm">
    </cfif>

    I always start my troubleshooting with
    <cfdump var="#form#">
    <cfabort>
    You also have a problem with an cfmail tag without the
    closing tag. I'm surprised that didn't cause a crash.
    You also have some problems with your if/else logic.

  • Contact Form Not Being Received

    Hi, we've had this problem with our site for a while now. When we set up the form to send an email to an email account under our domain and use the contact form, an email is received once or twice, but only shortly after a site republish. Once these emails have been sent, if you fill the form out again the emails won't be received. If I host the site on Adobe's Business Catalyst however, with the emails sent to the same email under our domain everything works perfectly fine. I then thought this must be something to do with our domain host provider, Unlimited Web Hosting, but after weeks of trying they couldn't fix or figure out why this problem was occurring. This is such an annoying problem because everything we try doesn't work and the contact form is crucial for the customer to be able contact us. Yes we could just shove our email on the page but that isn't attractive at all. I've looked around the forums and it seems a few people have had this problem so if anyone can help at all it would be very much appreciated! Thanks.

    Please provide the site url , also have you tested with different email accounts ? It can be an issue on receiving end too.
    Thanks,
    Sanjit

  • Emails from contact form not working

    I have a contact form on one of my website and it is not working properly. 
    Muse gives me a warning of not using another email than connected to the domain of the web.
    As I use Gmail in this particular website it is not working.
    How to solve this?
    Thanks
    Pétur

    Hi,
    I have and they told me they use SMTP authentication for their incoming emails.
    They also tried to work on Muse PHP code for me - but did not manage to configure it correctly for emails through SMTP from forms in Adobe Muse.
    The problem is that I have a customer that is not receiving any inquiries from his customers because the form on his website is not working.
    Do I have to use Businesscatalyst - is it alright there to use Gmail to send emails from forms hosted there?
    Hope you have some solution - I have to solve this
    Reg.
    Pétur

  • Why does my contact form not work either muse or my own html coded form?

    I used the muse contact form and uploaded the website to my host but it does not send emails... it says it has sent but nothing arrive to email account.
    Then i decided to remove the muse contact form and use my tried and tested EmailMeForm html embed code which works. BUT........... if i look on preview the contact form stays in the correct position on the page. when i upload to the host the contact form moves up the page.
    can somebody help?

    Hi,
    When I first enabled my Muse contact form, it reported that the email was sent but I didn't receive the email.  I discovered the emails were going to my spam folder.  This was when I used my own domain email address--the same domain as my Muse website.  When I put my Gmail address into the contact widget, the messages arrived in Gmail as expected.
    I am able to receive messages in my initial email account (my domain name) by creating a message rule.  I also found that you can use two email addresses in the contact widget form, separating them with a comma: [email protected],[email protected]
    John

  • Contact Form with Email PHP not working?

    Hello !
    Here is a link to my contact form:
    http://bayareafacepainters.com/quote_face_painting.html
    Here is the tutorial I am following to set up the Form to Email PHP
    http://www.freecontactform.com/email_form.php
    My form is not working. It is not sending me the email, and the "Thank you for contacting us page" is not showing up either. Is this a simple fix? I am not an expert coder, any help on what I am doing wrong or missing would be helpfull!

    Thank you for the suggestions... I cleaned up the names, and so I guess I am supposed to match the names in the form  to the PHP, so I changed the PHP to reflect the names of the fields in the form... it seems there may be more areas where I need to do this... What else does this need to work properly?
    http://www.bayareafacepainters.com/quote_face_painting.html
    <?php
    if(isset($_POST['email'])) {
        // EDIT THE 2 LINES BELOW AS REQUIRED
        $email_to = "[email protected]";
        $email_subject = "Face Painting Quote";
        function died($error) {
            // your error code can go here
            echo "We are very sorry, but there were error(s) found with the form you submitted. ";
            echo "These errors appear below.<br /><br />";
            echo $error."<br /><br />";
            echo "Please go back and fix these errors.<br /><br />";
            die();
        // validation expected data exists
        if(!isset($_POST['Name']) ||
            !isset($_POST['Email']) ||
            !isset($_POST['Phone']) ||
            !isset($_POST['Contact_Preference']) ||
            !isset($_POST['Contact_Preference']) ||
            !isset($_POST['Date']) ||
            !isset($_POST['Time']) ||
            !isset($_POST['Location']) ||
            !isset($_POST['Guests']) ||
            !isset($_POST['Age']) ||
            !isset($_POST['comments'])) {
            died('We are sorry, but there appears to be a problem with the form you submitted.');     
        $Name = $_POST['Name']; // required
        $Email = $_POST['Email']; // required
        $Phone = $_POST['Phone']; // required
        $telephone = $_POST['telephone']; // not required
        $comments = $_POST['comments']; // required
        $error_message = "";
        $email_exp = '/^[A-Za-z0-9._%-]+@[A-Za-z0-9.-]+\.[A-Za-z]{2,4}$/';
      if(!preg_match($email_exp,$email_from)) {
        $error_message .= 'The Email Address you entered does not appear to be valid.<br />';
        $string_exp = "/^[A-Za-z .'-]+$/";
      if(!preg_match($string_exp,$first_name)) {
        $error_message .= 'The First Name you entered does not appear to be valid.<br />';
      if(!preg_match($string_exp,$last_name)) {
        $error_message .= 'The Last Name you entered does not appear to be valid.<br />';
      if(strlen($comments) < 2) {
        $error_message .= 'The Comments you entered do not appear to be valid.<br />';
      if(strlen($error_message) > 0) {
        died($error_message);
        $email_message = "Form details below.\n\n";
        function clean_string($string) {
          $bad = array("content-type","bcc:","to:","cc:","href");
          return str_replace($bad,"",$string);
        $email_message .= "First Name: ".clean_string($first_name)."\n";
        $email_message .= "Last Name: ".clean_string($last_name)."\n";
        $email_message .= "Email: ".clean_string($email_from)."\n";
        $email_message .= "Telephone: ".clean_string($telephone)."\n";
        $email_message .= "Comments: ".clean_string($comments)."\n";
    // create email headers
    $headers = 'From: '.$email_from."\r\n".
    'Reply-To: '.$email_from."\r\n" .
    'X-Mailer: PHP/' . phpversion();
    @mail($email_to, $email_subject, $email_message, $headers);
    ?>
    <!-- include your own success html here -->
    Thank you for contacting us. We will be in touch with you very soon.
    <?php
    ?>

  • Muse Contact Form Not Taking Inputs

    Hi there,
    Could anyone shed some light as to why my contact forms (http://www.excelenvironmental.co.uk) are not taking inputs on the name, email and phone no fields? I am using the built in business catalyst forms - ecommerce package. Any help would be gratedully received.
    Thanks

    Hi
    I have tried to test the form placed in contact page and it works fine.
    User information is submitted and thank you message is displayed on submission.
    Please clear browser cookie and try again or check with a different browser.
    If you are still facing the same issue, provide details such as browser and version details.
    Thanks,
    Sanjit

  • Contact form not accepting certain characters in the email box

    Hi, i am currently using a flash template from flashmo.com and i have installed it etc... The problem i have is that when you go to send a message in the contact form you cannot enter certain characters in the email box, especially the '@' symbol, hw do i go about fixing this?
    Thanks a lot

    for each textfield you see in the ide, click it (to select it) and check the properties panel/embed fonts to make sure all characters needed in your app are checked.

  • Contact form Not working with Hotmail Accounts

    Hi, I have a problem with all the sites i have built with Muse. If the customer filling in any of the contact form on the websites uses a hotmail email account ( [email protected] )
    I get the following error message 'The server encountered a problem'
    Ive read that this could be a problem with my third party hosting company but they assure me that this is being caused by an error on the form
    Can anyone help with this please

    Ok so i have sorted the issue myself with NO THANKS to adobe
    Heres what everyone needs to do!
    Go to the following file public html - scripts - form process.php
    You then need to edit the following: ( line 103 )
    function get_email_headers($to_email, $form_email) {
      $headers = 'From: ' . $to_email . PHP_EOL;
      $headers .= 'Reply-To: ' . $form_email . PHP_EOL;
      $headers .= 'X-Mailer: Adobe Muse CC 2014.2.0.284 with PHP' . PHP_EOL;
      $headers .= 'Content-type: text/html; charset=utf-8' . PHP_EOL;
      return $headers;
    This needs changing to the following:
    function get_email_headers($to_email, $form_email) {
    $headers = 'From: ' . $to_email . PHP_EOL;
    $headers .= 'Reply-To: ' . $form_email . PHP_EOL;
    $headers .= 'MIME-Version: 1.0' . PHP_EOL;
    $headers .= 'X-Mailer: Adobe Muse CC 2014.2.0.284 with PHP' . PHP_EOL;
    $headers .= 'Content-type: text/html; charset=utf-8' . PHP_EOL;
    return $headers;
    The form will now work with hotmail, Gmail etc etc
    Hope this helps anyone having the same problem

  • Dreamweaver Tutorial - CSS to style contact form not showing in Browser

    Hi I have followed the tutorial on
    http://dreamweaverspot.com/css-dreamweaver-web-forms/.
    It worked well so far in Dreamweaver all the changes are done,
    however not after I have uploaded the page to the server. If you
    look on www.theoldfort.com/contact.htm you can see only the border
    the other styles are not being shown and the border is too wide. I
    tried to make it narrower but didnt succeed.

    Styling form elements is like nailing jelly to the wall....
    http://www.456bereastreet.com/archive/200701/styling_form_controls_with_css_revisited/
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "atomic king" <[email protected]> wrote in
    message
    news:gokba4$352$[email protected]..
    > Hi I have followed the tutorial on
    >
    http://dreamweaverspot.com/css-dreamweaver-web-forms/.
    It worked well so
    > far in
    > Dreamweaver all the changes are done, however not after
    I have uploaded
    > the
    > page to the server. If you look on
    www.theoldfort.com/contact.htm you can
    > see
    > only the border the other styles are not being shown and
    the border is too
    > wide.
    >

  • Contact form not working :( Please Help...

    Hey guys,
    I am really in trouble with flash forms and need help please. Ive been trying to get a contact form working for a few weeks but have had no luck.
    Below is the code I am putting in to the flash form and php file.
    (this is the code I have put for the send Button)
    on (release) {
             if (name eq "" or subject eq "" or message eq "" or email eq "") {
                   stop();
             } else {
             loadVariablesNum("form.php", 0, "POST");
             gotoAndStop(2);
    (this is the code I have put for the clear Button)
    on (release) {
        name = "";
        subject="";
        message="";
        email="";
    (And this is the php file i created in dreamweaver and saved it as form.php)
    $to = "[email protected]";
       $msg = "$name\n\n";
       $msg .= "$message\n\n";
      mail($to, $subject, $msg, "Message From: Online client\nReply-To: $email\n");
    ?>
    I have uploaded the swf file and php file on the server but my form is still not working by sending the information to my email.
    This is the link where i got the code from http://www.flashvault.net/tutorial.asp?ID=103
    It would be really greatful if someone could help me please
    I look forward to your opinions and ideas.
    Thanks

    you should really check a tutorial using loadvars.
    and there's no hope for that php file.:
    try:
    $to = "youremailaddress @ yourserver.com"; // change this to your email address
      $email=$_POST["email"];
       $msg = $_POST["name"]."\n\n";
       $msg .= $_POST["message"]."\n\n";
      mail($to, $subject, $msg, "Message From: Online client\nReply-To: $email\n");
    ?>

  • HTML Form Not Displaying Correctly in Outlook 2010 (Exchange 2013)

    Hello,
    I have recently migrated to Exchange 2013. Clients are still using Outlook 2010. There is an application that automatically sends an HTML form by email for the users to fill in. The form consists of radio buttons, text areas and drop down list. However,
    in Outlook 2010, the form is not rendered properly.
    When I clicked the "If there are problems with how this message is displayed, click here to view it in a web browser" link, the email is opened in
    IE and the form is displayed correctly.
    I also tried opening the same email in other clients, such as Thunderbird, Apple Mail Client and in mobile phones - the form is displayed correctly. I wonder
    why it fails to do so in Outlook 2010. The user mentioned that this does not happen in Outlook 2003 and prior to migration (I used Exchange 2010 previously). I have also tried using OWA, but the form does not display correctly
    Any help?
    Note: I can't attach any images or links as it is mentioned that my account is not verified yet. I will post some screenshots when it is possible to do so

    Hi 
    Outlook 2007 or newer use Microsoft Word for their HTML engine.
    You can refer this page http://www.campaignmonitor.com/css/ shows
    many things that do not work in different clients.I think Someone needs to re-code
    the HTML form to make it work in the current versions of Outlook. You can try formatting with text and HTML and see the results.
    Remember to mark as helpful if you find my contribution useful or as an answer if it does answer your question.That will encourage me - and others - to take time out to help you Check out my latest blog posts on http://exchangequery.com Thanks Sathish
    (MVP)

  • Contact Form not working - urgent!

    I've done all the test from this doc: Troubleshooting Muse Form Widgets Used on Third-Party Servers
    But no success!
    Can somebody help me, please?
    www.cuidarepsicologia.com.br

    Did you get my test mail via the contact form?
    from [email protected]

  • Adobe Muse simple conctat form

    I am creating a new site, where I inserted a simple conctat form, but doing the Muse PHP Diagnostic test something does not work and I can not find the problem.
    The site is on an FTP server that supports PHP and SQL and not in Adobe Muse Catalyst.
    Below the image of the Muse PHP Diagnostic
    Can anyone kindly help me?
    Thank you very much

    Hi David,
    I'm having the same issue. Have you figured this out yet?

  • Muse website Mobile version not displayed correctly

    Hello,
    I have created a website for a client in Adobe Muse. When viewing and testing the Business Catalist version looked fine. Now when I uploaded it to the live version, only the first page of the Mobile version is displayed correctly, the rest is wrong. Images at bottom instead of top etc. I don't know where to start looking?

    Problem solved! Some css files did not upload correctly, re-uploaded them, now everything works fine.

Maybe you are looking for