Email module correction ... Cc field not implemented

Hello,
The cc field use is not implemented and you have to add the two last lines of the code below to make it effective :
My small contribution ...
Zabelle
The cc field use is not implemented and you have to add the two last lines of the code below to make it effective :
- Code: Select all
$headers = array();
if ( $email->strval('from') ){
$headers[] = "From: ".$email->strval('from');
$headers[] = "Reply-to: ".$email->strval('from');
}
if ( $email->strval('cc') ){
$headers[] = "Cc: ".$email->strval('cc');
}
My small contribution ...
Zabelle