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

Similar Messages

  • Am using firefox 5 and am not able of uploading any file as attachmenet using my Yahoo email account , this problem does not happen with hotmail account or when using IE.

    when sending email through yahoo account , i cant upload any attachment with email, a sign of uploading lasts forever without uploading the file.
    this issue do not happen with hotmail account or when using IE to browse Yahoo account.

    Install ClamXav and run a scan with that. It should pick up any trojans.   
    17" 2.2GHz i7 Quad-Core MacBook Pro  8G RAM  750G HD + OCZ Vertex 3 SSD Boot HD 
    Got problems with your Apple iDevice-like iPhone, iPad or iPod touch? Try Troubleshooting 101

  • What are the best customizable contact forms that work with Godaddy?

    Hello,
    I have never had much look with getting contact forms to work but i'm not sure whether it may just be the contact forms i choose don't work through Godaddy that well.
    Can anyone point me in a direction to any customizable contact forms that do work through Godaddy. PHP script needs to be included.
    Any help would be greatly appreciated as this has bugged me for some time now.
    Alex.

    Depends on the level of hosting you have.
    Using Our PHP Form Mailers on Web & Classic Hosting | GoDaddy Help | GoDaddy Support
    GoDaddy hosts 2 form-to-email processing scripts in PHP.  You activate them from your CPanel.
    One is super basic and the easiest to set-up
    Using gdform.php
    The other has a little more room for customization but it isn't exactly robust.
    Using webformmailer.php
    Nancy O.

  • Any thoughts on contact form not working on 1and1 hosting?

    Hi.
    Helping my friend with her site hosted on 1and1. I've uploaded without error and tried Muse PHP Diagnostics and get 3 green checks. My public and private keys are made with the same domain name that I'm uploading to but I can't get the contact form to work. Any ideas? Website below. Thanks!!
    http://corejourney.net/

    I use the forms all the time on 1and1. I believe your problem is with the Captcha. I believe the Captcha that comes with Muse only works with Business Catalyst hosted forms. Try removing the Captcha and  test again.

  • 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

  • Sending Calender Meeting Invites no longer working with Hotmail account

    BlackBerry 9700
    v6.0.0.461
    I use Hotmail email
    I think this started to fail when I upgraded to the new OS. When I create a new Calender appointment, it no longer shows up in my hotmail calender. If I invite attendees, all they get is a blank email, they no longer get a proper meeting request in their Outlook inbox.
    However, if they send me a meeting invite, it is properly recognized on my blackberry.
    As best I tried scouring the internet looking at various BB forums, I went into options and deleted my Hotmail email account on the phone. I set it up again and it does not fix the problem.
    As far as I can tell, my hotmail account is a now typical account that has pop3 access.
    Thanks.
    EDIT: I removed the Hotmail account and added a GMail account. The GMail account workes totally fine with meeting invites. Also, after the creation of the GMail account, there is now a second inbox icon on my BB home screen. This icon is an envelope like the original one but also has a graphic of the world over-layed on top of it that resembles the Browser icon.
    However.... my real problem remains... I need this to work with my Hotmail.com address.

    Today I noticed that this same thing is happening to me, but with the GMail account... From the other four accounts works fine, but when the appointment is to Google Calendar, the "Atttedees" box dissapears!

  • 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");
    ?>

  • New Lightroom 4 mail feature does not work with Hotmail

    Hi,
    I have tested the new mail feature today.  Unfortunatelly, it does not work well with my hotmail account. 
    The mail is send by lightroom and received in my hotmail mailbox, but the photo is not visible.  The tekst in the messages is readable, but instead of the downloaded photoI only see a red cross.
    Anyone an idea what the reason is ?
    thanks
    Rudy

    Hi Stone Pan,
    Thanks for answering. 
    I do not see any error message and the received mail contains a correct text message, only the picture is not visible in the mail.  I tried to send a Photo with the email preset on small and normal but without success.
    Kind regards,
    Rudy
    Edit :
    I have tried to send a photo to the hotmail email adress of a friend and it works, text and photo are visible.  Conclusion is that the reason for not showing the photo is not a Lightroom 4 problem.  The reason should be something on my own computer, any suggestions are welcome.

  • Apple Mail not working with IMAP account

    I have been using Entourage for my email with several IMAP email accounts. SOme of the accounts I was getting occasional errors so I thought I would try Apple Mail.
    I am able to successfully set up the accounts in Mail (i.e. it successfully logs into server) however it does not get any of the mail nor does it get any of the mail folders that are on the IMAP server (viewing email using Web Mail or even going back to Entourage shows the emails on the account). Are there any special (hidden) tricks that I need to do to get Mail to work with a standard IMAP mail server?

    I have a very similar problem. Apparently IMAP access is better than POP3. Well IMAP slows my Mac to a complete stop whereas POP3 is seamless. I deleted my POP3 mailboxes after successfully accessing my GMail accounts via IMAP, then it slowed down.
    I've deleted the IMAP accounts a few times, but each time a new account is created it forces me to accept IMAP with no option for POP3. The help file also contains no information on POP3.
    I get about 50 emails everyday and my usual point of email access has just become redundant, I must now rely on email via my browser and .
    I made this change because the iPhone does not sync downloaded emails with Apple Mail. In Mail on my Mac, the one GMail inbox I have setup says there are 11 unread which it eventually shows yet none appear unread. I'll have to rely on web-based email until this is resolved.
    Can anyone help with these IMAP access problems?

  • Has anyone's Contact Form quit working with the latest Muse update?

    I've removed Captcha, reCaptcha, and still I'm getting the message, "ERROR: An error occurred. Image verification failed. If you believe this is incorrect, please contact your system administrator or go back and re-submit the form." This form worked perfectly last week! I had to resend my Muse file today with some minor changes (using the updated Muse app) and now my Contact Forms cannot be sent... Any ideas on what's going on.
    I don't know if it's related, but the Business Catalyst servers have been extremely slow today!!!

    After having no luck, I finally ended up going back to a slightly older version of the website file (.muse), pulling out the entire old contact form, and rebuilding it with the updated Contact Form widget from the current version of Muse. This worked. I believe there was just some conflict with a piece of old code sitting on the server. I'd suggest when you reload your site, that you do ALL files, rather than just the "modified" pages.

  • Contacts is not working with yosemite

    how resolve problem
    Process:               Contacts [406]
    Path:                  /Applications/Contacts.app/Contents/MacOS/Contacts
    Identifier:            com.apple.AddressBook
    Version:               9.0 (1498)
    Build Info:            AddressBook_executables-1498000000000000~1
    Code Type:             X86-64 (Native)
    Parent Process:        ??? [1]
    Responsible:           Contacts [406]
    User ID:               501
    Date/Time:             2014-10-22 09:27:23.667 +0300
    OS Version:            Mac OS X 10.10 (14A389)
    Report Version:        11

    Some people might have success but more users are reporting issues with Yosemite, Please refer to the link below and the other links therein that might possible help you for now.
    http://supportforums.blackberry.com/t5/BlackBerry-​Link/Blackberry-Link-not-working-after-Yosemite-OS​...

  • 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

  • Non iCloud contact sync not working with iPhone 4S and Microsoft Windows/Outlook

    Trying to sync contacts without success! Have iPhone 4S and Microsoft Windows, not using iCloud.  I've gone through the Info route and told it to sync but the data doesn't transfer.  Any idea why?

    what version of Outlook are you using. I know right now its not compatible with Outlook 2013.

  • Firefox not working with hotmail

    Today, all of the sudden I could not see emails that I had sent in hotmail or google. I could see the attachments, but only the first few lines of the email. I could however see the emails in other browsers. I was freaking out that I was send blank emails to employers.

    I don't know if this is an issue with Hotmail having made some changes on their side.
    You can try to clear the cache and the cookies from sites that cause problems.
    "Clear the Cache":
    *Tools > Options > Advanced > Network > Cached Web Content: "Clear Now"
    "Remove Cookies" from sites causing problems:
    *Tools > Options > Privacy > Cookies: "Show Cookies"
    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • ITunes and iPod not working with one account

    Hi
    I have iTunes 9.0.1 running on 10.6.1 on a MBP and I have just bought a new 5th generation iPod Nano.
    I have been trying to set up the iPod on my partner's account on my MBP. iTunes just freezes every time I plug in the iPod and needs a force quit. When I try to set it up on my account it is recognised straight away. I have also been able to set it up on a new account but I cannot find any way to stop iTunes freezing on my partner's account. Her account works perfectly otherwise.
    Strangely the iPod is seen by the Mac OS on my partner's account in that I can browse it in finder and the icon appears on the desktop. It is just iTunes on this one account that does not work.
    Any ideas?
    Thanks

    Any thoughts?

Maybe you are looking for

  • Please, how make a DVD menu with chapters? FCPX

    I already instaled FCPX but I can't find where I can make a profesional DVD menu as in DVD studio before. There is only "share" and this is for amaters not for me. I need make profesional DVD with chapters, caregories etc. Please is there anybody who

  • Can i put itunes upgrade on a disc?

    Hey ther, i have been trying to upgrde itunes 4 to itunes 6 on a friends pc-but they have no internet! yes, iknow , in this day and age not to be online but there you have it. before , when i tried to update itunes it would give me an option to eithe

  • Active Directory Groups Not Working in Sharepoint

    We are trying to manage permissions with AD groups but thus far permissions are not working.  We have a site and are able to search for, find, and add AD groups.  However, users in this group still get access denied.  If users are added explicitly to

  • ALPHANUM datatype contains non-alphanumeric character like @#$&*

    Hi All, I use ALPHANUM datatype in one table with 127 size. As per definition in Developer guide "ALPHANUM(n) data type specifies a variable-length character string which contains alphanumeric characters" Example : insert into "SOMNATH"."aadata" valu

  • ADF MOBILE: Storing images into sqlite DB

    Can someone please show me how to store and retrieve images and other file types into the local sqliteDB. I know I have to use blobs, but what is the process of converting a file into a blob and converting a blob into a specific file (an image or pdf