Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagebash
resources.mail.defaultFrom.email = service@translationcompany.com ;this is the address that is the sender of the email
resources.mail.defaultFrom.name = "Translation Company" ;this is just hte from name for the email
resources.mail.transport.type = Zend_Mail_Transport_Smtp  ;this is the mail transport type for the Zend_Mail class and should stay as it is for smtp
resources.mail.transport.host = your.smtphost.com  ;this should be the hostname of your smtp server, that should send the mail
resources.mail.transport.name = translate5.translationcompany.com  ;this should be the domain name of the server, that runs translate5

In general you can use any kind of further configuration Zend_Mail of Zend Framework 1 allows. For a number of examples please have a look here.

To send every mail the server sends as bcc to certain addresses you can add the following lines

...