i figured out,
case PHPMAILER_METHOD_SMTP:
$t_mail->IsSMTP();
$t_mail->SMTPOptions = array(
'ssl' => array(
'verify_peer' => false,
'verify_peer_name' => false,
'allow_self_signed' => true
)
);
# SMTP collection is always kept alive
$t_mail->SMTPKeepAlive = true;
if( !is_blank ...
Search found 2 matches
- 16 Jan 2018, 12:10
- Forum: General Discussion
- Topic: Email Configuration
- Replies: 2
- Views: 6415
- 15 Jan 2018, 14:07
- Forum: General Discussion
- Topic: Email Configuration
- Replies: 2
- Views: 6415
Re: Email Configuration
Hello, where do i add that piece of code? in the function email_send( EmailData $p_email_data ) , but where? could you specify the line numer? Thanks!!!!