Hi all,
i try to use contact us to send email to site owner and even though site wrote it was sent, i didnt recieved it
i also try to send from admin side to customer, and customer also didnt get the mail. What is happening, my free host allow php mail()
i try to use contact us to send email to site owner and even though site wrote it was sent, i didnt recieved it
i also try to send from admin side to customer, and customer also didnt get the mail. What is happening, my free host allow php mail()
sorry i do not understand ur question.
for ur info, i am using 1.27 and the server is a free hosting server online, when editing the site owner details in the administration page, i put in my email as xxxxxx@gmail.com..
i try to use the contact us page at front end OC to send an email to the site owner which is me, but i do nt received any email even though when using the contact us page, the page wrote that the email was sent successfully
for ur info, i am using 1.27 and the server is a free hosting server online, when editing the site owner details in the administration page, i put in my email as xxxxxx@gmail.com..
i try to use the contact us page at front end OC to send an email to the site owner which is me, but i do nt received any email even though when using the contact us page, the page wrote that the email was sent successfully
I dont remember during the install process. Does anyone know if there is a prompt asking for 'advanced' email settings during installation?
I.e.
User
Passwd
SSL/TLS
Port number
If the above is not a query during installation is there a way to hack this in anywhere or does one have to configure an MTA to use for sending emails?
I am having OC installed on my mail server and have allowed local host to relay which works for me.
I.e.
User
Passwd
SSL/TLS
Port number
If the above is not a query during installation is there a way to hack this in anywhere or does one have to configure an MTA to use for sending emails?
I am having OC installed on my mail server and have allowed local host to relay which works for me.
i try to edit the mail.php in the system folder.. there is one code like this:
mail($to, $this->subject, $message, $headers);
i try to remove away the last $headers and send an email, it works.. but the email content is not correct..
i like to know how should i go abt editing the stuffs in the $headers
thanks
mail($to, $this->subject, $message, $headers);
i try to remove away the last $headers and send an email, it works.. but the email content is not correct..
i like to know how should i go abt editing the stuffs in the $headers
thanks
Hi all,
please help, when sending e-mail me to come in this shape:
What do I adjust 
Thank you ...
please help, when sending e-mail me to come in this shape:
Code: Select all
<title>Test</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
</head>
<body><p>Test <strong>Test </strong><span style="color: rgb(255, 0, 0);">Test </span><span style="color: rgb(255, 0, 0);"><strong>Test </strong></span><em>Test </em><strong>Test.</strong></p></body>
</html>

Thank you ...
czLEONcz
Hello to all here on the forum,
Administration - When you send the customer's email, it comes in this shape.
How to fix, urgent 
Thank you ...
Administration - When you send the customer's email, it comes in this shape.
Code: Select all
<title>Test</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
</head>
<body><p>Test <strong>Test </strong><span style="color: rgb(255, 0, 0);">Test </span><span style="color: rgb(255, 0, 0);"><strong>Test </strong></span><em>Test </em><strong>Test.</strong></p></body>
</html>

Thank you ...
czLEONcz
Hello,veryone!
i try to use contact us to send email to site owner and even though site wrote it was sent, i didn't recieved it
i also try to send from admin side to customer, and customer also didnt get the mail. What is happening?
i try to use contact us to send email to site owner and even though site wrote it was sent, i didn't recieved it
i also try to send from admin side to customer, and customer also didnt get the mail. What is happening?
andyshine wrote:Hello,veryone!
i try to use contact us to send email to site owner and even though site wrote it was sent, i didn't recieved it
i also try to send from admin side to customer, and customer also didnt get the mail. What is happening?
doi u wrecive any emails?
if not check the emails address and then contact the hosting to see if mail function is enabled.
Hello friendsczLEONcz wrote:Hello to all here on the forum,
Administration - When you send the customer's email, it comes in this shape.How to fix, urgentCode: Select all
<title>Test</title> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> </head> <body><p>Test <strong>Test </strong><span style="color: rgb(255, 0, 0);">Test </span><span style="color: rgb(255, 0, 0);"><strong>Test </strong></span><em>Test </em><strong>Test.</strong></p></body> </html>
Thank you ...
I have email in this format
PHP Mail is set
please for help
OC 1.2.8
Thank you.
czLEONcz
Hi all,
email me to come with this subject
Please for help
Thank...
email me to come with this subject
Code: Select all
??au not support HTML email!
Thank...
czLEONcz
opencart 1.2.9
my log server if send message via admin
[Mon Jun 22 23:53:16 2009] [error] [client 11.11.11.11] FastCGI: server "/usr/local/apache/fcgi-bin/php5-fcgi" stderr: ALERT - mail() - double newline in headers, possible injection, mail dropped (attacker '11.11.11.11', file '/usr/local/apache/www/htdocs/mydomain.pl/opencart/system/library/mail.php', line 124), referer: http://www.mydomain.pl/opencart/admin/i ... order_id=1
double newline in headers, maybe this is problem?
my log server if send message via admin
[Mon Jun 22 23:53:16 2009] [error] [client 11.11.11.11] FastCGI: server "/usr/local/apache/fcgi-bin/php5-fcgi" stderr: ALERT - mail() - double newline in headers, possible injection, mail dropped (attacker '11.11.11.11', file '/usr/local/apache/www/htdocs/mydomain.pl/opencart/system/library/mail.php', line 124), referer: http://www.mydomain.pl/opencart/admin/i ... order_id=1
double newline in headers, maybe this is problem?
Code: Select all
// /system/library/mail.php
if (strtoupper(substr(PHP_OS, 0, 3) == 'WIN')) {
$eol = "\r\n";
} elseif (strtoupper(substr(PHP_OS, 0, 3)=='MAC')) {
$eol = "\r";
} else {
$eol = "\n";
}
$headers = 'From: ' . $this->sender . '<' . $this->from . '>' . $eol;
$headers .= 'Reply-To: ' . $this->sender . '<' . $this->from . '>' . $eol;
$headers .= 'X-Mailer: PHP/' . phpversion() . $eol;
$headers .= 'MIME-Version: 1.0' . $eol;
#--- not send mesasge --- > $headers .= 'Content-Type: multipart/mixed; boundary="' . $boundary . '"' . $eol . $eol;
/*send message */
$headers .= 'Content-Type: multipart/mixed; boundary="' . $boundary . '"' . $eol;
and problem encoding utf8 subject
file /system/library/mail.php
file /system/library/mail.php
Code: Select all
/*incorrect encoding char*/
#mail($to, $this->subject, $message, $headers);
/*correct encoding*/
mail($to, "=?UTF-8?B?". base64_encode($this->subject) ."?=", $message, $headers);
Who is online
Users browsing this forum: Bing [Bot] and 148 guests