Good day Developers, I have been working for a couple of days now trying to get sc_mail_send to work.
I have set all the parameters, then I call the function sc_mail_send(), but it doesn’t appear that it ever gets called, I get no error messages at all.
Here is my basic setup: You will note that I echo a statement before and after the function call, the 2nd one never gets displayed.
echo “calling sc_mail_send
”;
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_tp_copies ,
$mail_port ,
$mail_tp_connection,
$mail_attachment ,
$mail_ssl ,
$mail_ReplyTo
);
echo “ending sc_mail_send
”;
Hoping someone can point me in the right direction. Thank you.