Ben gidiyordu iletiyi işlemek ve sorumlu bir Sistem Yöneticisi göndermek için çalışıyorum.
Ben mesajı göndermek için CakePHP posta Bileşen kullanın. Sunucu tarafında, ben mesajı taşımak için postfix'i kullanın.
function sendAsEmail($data) {
$Email->sendAs = 'html';
$Email->from = $user['Sender']['username'] . '@example.com';
$Email->return = Configure::read('App.systemAdminEmail');
$Email->bcc = array($data['Message']['recipient_text']);
$content = 'Some content';
$Email->send($content);
}
Yukarıda gördüğünüz gibi, ben tüm dönmüş mesajı göndereceğiz sysadmin e-posta adresi $ posta-> dönüşünü ayarlayın.
Postfix yapılandırmasına, ben bir bounce.cf şablon ve set bounce_template_file oluşturma çalıştı. http://www.howtoforge.com/configure-custom-postfix-bounce-messages
Nasıl gidiyordu mesajı almak ve Sistem Yöneticisi bunu gönderebilirim?