Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Zend_Mail のプラグインを提供する電子メール プロバイダー (MailChimp など) を知っている人はいますか?
理想的には、Zend_Mail が呼び出されるすべての機会を書き直すのではなく、そのようなプロバイダーを使用するように Zend_Mail を構成したいだけですか?
最善の解決策は、独自のZend_Mail_Transportクラスであり、たとえばブートストラップでZend_Mailのデフォルトのトランスポートとして設定することだと思います。
$tr = new Zend_Mail_Transport_MyTransport(); Zend_Mail::setDefaultTransport($tr);