Hy,script works, but i have issue not find problem, when i add string for a email copies not works, but reiceve only one mail,but not copies, i want reiceve two mail, thanks.
// Email parameters
$mail_smtp_server = ‘----’; // SMTP server name or IP address
$mail_smtp_user = ‘-----’; // SMTP user name
$mail_smtp_pass = ‘-----’; // SMTP password
$mail_from = ‘x@x.it’; // From email
$mail_to = $email ; // To email
$mail_subject = $invio; // Message subject
$mail_message = {testo_email}; // Message body
$mail_format = ‘H’; // Message format: (T)ext or (H)tml
$mail_Copies = ‘x@x.it’ ;
$mail_Copies_Type = ‘CCC’ ;
// Send email";
{
sc_mail_send($mail_smtp_server,
$mail_smtp_user,
$mail_smtp_pass,
$mail_from,
$mail_to,
$mail_subject,
$mail_message,
$mail_format);
$mail_Copies;
$mail_Copies_Type;
}