Forums / Setup & design / [SOLVED] cc mail

"Please Note:
  • At the specific request of Ibexa we are changing this projects name to "Exponential" or "Exponential (CMS)" effective as of August, 11th 2025.
  • This project is not associated with the original eZ Publish software or its original developer, eZ Systems or Ibexa".

[SOLVED] cc mail

Author Message

Mads Ovesen

Tuesday 16 August 2005 6:47:22 am

Anyone know how I can put a cc mail recipient on all mails from forms om my site?

Thanks

Answer: Add function addCc in collectinformation.php:

$mail->setReceiver( $receiver );
$mail->addCc( $ccreceiver ); 
$mail->setSubject( $subject );
$mail->setBody( $templateResult );
$mailResult = eZMailTransport::send( $mail );

/m