php - Plugins for Zend_Mail

115

Does anyone know of any email providers (such as MailChimp) that provides plugins for Zend_Mail?

Ideally I just want to configure Zend_Mail to use such a provider rather than rewrite all occasions where Zend_Mail is called?

687

Answer

Solution:

I think that the best solution will be own Zend_Mail_Transport class and setting it for example in bootstrap as default transport for Zend_Mail

$tr = new Zend_Mail_Transport_MyTransport();
Zend_Mail::setDefaultTransport($tr);

People are also looking for solutions to the problem: php - Symfony project is not work on local pc

Source

Didn't find the answer?

Our community is visited by hundreds of web development professionals every day. Ask your question and get a quick answer for free.

Ask a Question

Write quick answer

Do you know the answer to this question? Write a quick response to it. With your help, we will make our community stronger.

Similar questions

Find the answer in similar questions on our website.