sphinx7 Posted April 4, 2010 Share Posted April 4, 2010 I have successfully installed prestashop, thanks!I tried to test the "send a message" function on "contact" page, BUT I can not receive the message.How to solve the problem?Thanks. Link to comment Share on other sites More sharing options...
tomerg3 Posted April 4, 2010 Share Posted April 4, 2010 1) Search the forum before asking a question, certainly when it is on such a basic part.2) Check out http://www.presto-changeo.com/content/9-fix-email-problems Link to comment Share on other sites More sharing options...
sphinx7 Posted April 5, 2010 Author Share Posted April 5, 2010 thanks! problem solved! Link to comment Share on other sites More sharing options...
floralmusic Posted April 25, 2010 Share Posted April 25, 2010 The below solution did not worked for me. Kindly Help! In /tools/swift/Swift/Message.php line #79 From $this->setFrom(""); To $this->setFrom("[email protected]"); In /tools/swift/Swift.php after line 370 Find: if (!($has_reply_to = $message->getReplyTo())) $message->setReplyTo($from); Add the following code after 370 line: if (!$has_reply_to[0]) $message->setReplyTo($from->getAddress()); In /tools/swift/Swift/Plugin/MailSend.php line # 159 Add $params = ""; Link to comment Share on other sites More sharing options...
liube Posted May 9, 2010 Share Posted May 9, 2010 @Tomerg3, I have a very strange situation. All emails work only in one case: if the addressee of the email is in the format anyname@domain_on_which_runs_my_prestashop.comThe above provided solution (source code modification) did help and I can add all language files are there in the mails/xx folders.Here is my current situation, PLEASE HELP anyone!!!- emails sent from my contact form arrive if the email address mentioned in PS Back Office > Employees > Contacts is an email in the format anyname@domain_on_which_runs_my_prestashop.com- emails sent from my contact form do not arrive to any email address in other format (gmail, yahoo, etc.)- emails with confirmation of order or any change of status do not arrive to customers registered on the website APART if the customer registered has an address in the format anyname@domain_on_which_runs_my_prestashop.com (that is to say only ME)- emails with new password (after password reset) do not arrive as well APART if the customer registered has an address in the format anyname@domain_on_which_runs_my_prestashop.com (that is to say only ME)- I am not using SMTP configuration in PS Back Office > Preferences > Email. I am using PHP mail ()...- and it seems it works: as per your proposal on another Prestashop forum thread (http://www.prestashop.com/forums/viewthread/40914/P0/configuring___using_prestashop/total_stop_of_all_ps_emails_ps_or_isp) I have created a basic PHP file and run it on my server:<?mail("[email protected]","test email","test email");?>Emails have been sent successfully to all kind of email addresses (not only to emails in the format: anyname@domain_on_which_runs_my_prestashop.com)I will be very very very grateful for help on this situation!!!!Thanks, Lube Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now