답변:
cron.sh
실행 중인지 확인하십시오 ! 우리는 방금 크론이 잘못 구성되었음을 발견하기 위해 하루 종일 이것을 디버깅했습니다.
Magento 1 매장에서 메일을 발송하는 방법은 2 가지가 있습니다.
cron을 피하려면 :
order.php 파일을여십시오.
app / code / core / Mage / Sales / Model / Order.php
라인 # 1356,1450,
변화
//$mailer->setQueue($emailQueue)->send();
에:
$mailer-> send();
에서 app/design/frontend/base/default/template/checkout/success.phtml
: 메일 직접 발송을위한 다음 줄 맨 위로 성공 페이지 추가
$order = Mage::getModel('sales/order');
$incrementId = Mage::getSingleton('checkout/session')->getLastRealOrderId();
$order->loadByIncrementId($incrementId);
try{
$order->sendNewOrderEmail();
} catch (Exception $ex) {
echo "Email Not Sent...";
}
$customer = Mage::getSingleton('customer/session')->getCustomer();
$email = $customer->getEmail();
//End Email Sending
Template.php에서 다음 메일 대기열 코드를 삭제 한 다음 고객이 주문하거나 관리자 패널 "판매 / 주문"탭에서 이메일 보내기를 클릭하면 이메일 수신이 시작되었습니다.
Magento는 인스턴트 이메일 대신 일정 작업으로 주문 이메일을 보내도록 설정했습니다 ... 아마도 성능상의 이유로? Template.php에서 5 분마다 실행되도록 스케줄 작업을 설정하고 실행하는 방법을 찾으십시오.
Template.php는 => /app/code/core/Mage/Core/Model/Email/Template.php에 있습니다.
if ($this->hasQueue() && $this->getQueue() instanceof Mage_Core_Model_Email_Queue) {
/** @var $emailQueue Mage_Core_Model_Email_Queue */
$emailQueue = $this->getQueue();
$emailQueue->setMessageBody($text);
$emailQueue->setMessageParameters(array(
'subject' => $subject,
'return_path_email' => $returnPathEmail,
'is_plain' => $this->isPlain(),
'from_email' => $this->getSenderEmail(),
'from_name' => $this->getSenderName(),
'reply_to' => $this->getMail()->getReplyTo(),
'return_to' => $this->getMail()->getReturnPath(),
))
->addRecipients($emails, $names, Mage_Core_Model_Email_Queue::EMAIL_TYPE_TO)
->addRecipients($this->_bccEmails, array(), Mage_Core_Model_Email_Queue::EMAIL_TYPE_BCC);
$emailQueue->addMessageToQueue();
return true;
}
다음과 같은 두 가지 해결책이 있습니다.
솔루션 -01 : cron 사용
시스템> 구성> 고급> 시스템> Cron
기본 설정은 다음과 같습니다.
우선, Magento 1.9+는 트랜잭션 이메일을 보내기 위해 크론 작업에 전적으로 의존합니다. cron 작업이 제대로 설정되지 않았다면 지금해야합니다.
우선 Magento 관리자에서 cron 작업을 설정했는지 확인하십시오.
시스템> 구성> 고급> 시스템> Cron
기본 설정은 다음과 같습니다.
15 일 내에 실행하지 않으면 누락 된 20 개에 대해 15 개 스케줄마다 스케줄 생성
이 설정을 변경해야한다고 제안하는 사람들이 있지만 최상의 조합에 동의 할 수 없기 때문에 그대로 둡니다.
그런 다음 호스팅 제어판으로 가서 크론 작업을 설정해야합니다. cPanel에서는 고급> 크론 작업 아래에 있습니다. 5 분마다 실행되도록 설정하고 다음 명령을 사용하십시오.
php -f /home/username/public_html/cron.php
위의 경로가 올바른지 확인하고 cron.php 파일이 실제로 Magento 설치 루트에 있는지 확인하십시오 (방금 업그레이드 한 경우). 사용자 이름을 올바른 계정으로 변경하십시오.
이제 처음에는 wget 명령 문자열을 사용한다고 말하는 xtento.com 개발자의 조언을 따르지 않았습니다. wget -O / dev / null -q http://www.YOURDOMAIN.com/PATH_TO_MAGENTO/cron. PHP
솔루션 -02 : 크론 피하기
거래 이메일은 즉시 발송됩니다.
//app/code/core/Mage/Sales/Model/Order.php Line#1356,1450
//$mailer->setQueue($emailQueue)->send(); Change To
$mailer->send();
app/design/frontend/base/default/template/checkout/success.phtml
//add following line Top success page for sending mail direct
// Start Send Emai Here......
$order = Mage::getModel('sales/order');
$incrementId = Mage::getSingleton('checkout/session')->getLastRealOrderId();
$order->loadByIncrementId($incrementId);
try{ $order->sendNewOrderEmail();}
catch (Exception $ex) { echo "Email Not Sent..."; }
$customer = Mage::getSingleton('customer/session')->getCustomer();
$email = $customer->getEmail();//End Email Sending
Magento 1.9를 사용하면 모든 이메일이 대기하고 나중에 Cron을 통해 전송됩니다.
Cron을 통해 거래 이메일을 보내 려면 Cron 탭의 시스템 > 구성 > 시스템 에서 cron을 설정 하거나 Cpanel 에서 cron을 만들어 루트 Magento 디렉토리에있는 cron.sh 또는 cron.php로 직접 보내십시오 .
"SMTP Pro Email"확장명을 설치하십시오 : http://www.magentocommerce.com/magento-connect/smtp-pro-email-free-custom-smtp-email.html
사용자 정의 SMTP 세부 사항을 입력하고 완료하십시오.
알아내는 데 이틀이 걸렸습니다. 크론 작업이 필요하지 않지만 크론 작업을 원하고 위의 작업을 원하지 않는 경우 다음을 수행 할 수 있습니다.
후:
$isShellDisabled = (stripos(PHP_OS, ‘win’) === false) ? $isShellDisabled : true;
이 코드 줄을 추가하십시오 :
$isShellDisabled = true;
C 패널에서 Cron 작업 열기 섹션
15 분마다 다음 명령을 실행하는 cron 작업을 작성하십시오.
php -f /home/USERNAME/public_html/domain.com/magento_folder/cron.php
n98-magerun을 사용 하여 다음을 실행합니다.
n98-magerun sys:cron:run core_email_queue_send_all
또는 항상 실행하지 않으려면 시간을 정하십시오.
watch -n 10 n98-magerun sys:cron:run core_email_queue_send_all
10 초마다 대기열에있는 모든 이메일을 보냅니다.
주문 이메일 만 발송하지 않는 경우 Magento는 주문 이메일 만 대기열에 저장하고 배치하여 발송하기 때문입니다. Heartbeat Cron 설정이 없으면 Magento 대기열을 떠나지 않습니다.
다른 Magento 이메일은 Magento에서 메일러 데몬으로 직접 전달되므로 발송됩니다. 주문 이메일과 같은 Magento 대기열은 Hearbeat Cron이 실행될 때까지 메일러 데몬에게 전달되지 않습니다.
강제로 나가려면 ... http://yourmagentodomain.com/cron.php로 이동하여 5 분마다 해당 페이지를 새로 고침하면 대기중인 주문 이메일이 발송되기 시작합니다. 하트 비트 크론이이 작업을 수행해야합니다. 아, 그리고 그 cron.php 파일을 탐색 할 때 페이지가 비어 있어야하므로 놀라지 마십시오 ... 작동합니다.
지식 기반을 따라 작동했습니다. http://www.magentocommerce.com/knowledge-base/entry/ee1141-ce191-responsive-email#contact-info
"거래 전자 메일 현지화"부분에서 이전 지침을 수행 한 후 / en_UK로 복사하면 최종적으로 전자 메일이 발송됩니다 (이전에 전송되지 않은 전자 메일 포함). 또한 주문 확인 페이지가 고객에게 표시되지 않는 문제가있었습니다. 완성. 이것도 수정되었습니다.
예를 들어 en_GB 로캘의 경우 다음 위치에있는 파일을 복사해야합니다.
app / locale / en_US / template / email
위치로 :
app / locale / en_GB / template / email
메일 시스템 (smtp, zend_mail)이 제대로 작동하면; mailQueue를 비활성화하면 문제가 해결 될 수 있습니다.
/app/code/core/Mage/Core/Model/Email/Template.php
407 행 변경
if ($this->hasQueue() && $this->getQueue() instanceof Mage_Core_Model_Email_Queue) {
에
if (false /\*$this->hasQueue() && $this->getQueue() instanceof Mage_Core_Model_Email_Queue\*/) {