I am getting this errorError: E-Mail to required!. When my customers are checking out via the Offline credit card method directly after they have entered their details and click continue this error comes up. it still send me(admin) and the customer an email but customers are emailing me saying that there are errors on my site and therefore not buying of having to use another method of payment, in most cases paypal which i guess is working fine. I've done some dummy transactions myself and I got the error too. Does anyone have any ideas why this is happening and possibly a soultion.
Regards
Stewart
For those getting "Error: Email to required!"
This is due to the additional alert email check adding a single "blank" email to the additional email list. It doesn't stop any orders, but it throws an ugly error.
Quick fix:
1. EDIT: catalog/model/checkout/order.php
2. FIND (~line 379):
3. REPLACE WITH:
This is due to the additional alert email check adding a single "blank" email to the additional email list. It doesn't stop any orders, but it throws an ugly error.
Quick fix:
1. EDIT: catalog/model/checkout/order.php
2. FIND (~line 379):
Code: Select all
// Send to additional alert emails
$emails = explode(',', $this->config->get('config_alert_emails'));
foreach ($emails as $email) {
$mail->setTo($email);
$mail->send();
}
3. REPLACE WITH:
Code: Select all
// Send to additional alert emails
$emails = explode(',', $this->config->get('config_alert_emails'));
foreach ($emails as $email) {
if ($email) {
$mail->setTo($email);
$mail->send();
}
}
Who is online
Users browsing this forum: No registered users and 111 guests