首页 > 解决方案 > 如何在 CakePHP 中获得退回的电子邮件?

问题描述

我正在使用 cakePHP 2.0 发送电子邮件。一切正常,但如何捕捉退回的电子邮件?我已经添加了回复并返回,但仍然没有收到退回的电子邮件。

$this->Email->sendAs = 'both';
$this->Email->from = 'abc@xyz.com';
$this->Email->to = 'wrong@wrong.com';
$this->Email->replyTo = 'abc@xyz.com';
$this->Email->return = 'abc@xyz.com';
$this->Email->headers = ['Return-Path'=>'abc@xyz.com'];
$this->Email->subject = 'Test Eail';
$msg = 'Message';
$this->Email->send($msg);

标签: phpemailcakephp

解决方案


推荐阅读