08-29-2018, 04:30 PM
(08-29-2018, 04:11 AM)weetax Wrote: Can you edit /users/helpers/helpers.php find the function "function email($to,$subject,$body,$opts=[],$attachment=false){"
and add this code
It's perfect for me. Have a good luck.Code:$mail->SMTPOptions = array(
'ssl' => array(
'verify_peer' => false,
'verify_peer_name' => false,
'allow_self_signed' => true
)
);
Thanks for your quick reply.
i have tryed it but it did not work
my code looks like this now:
Code:
function email($to,$subject,$body,$opts=[],$attachment=false){
/*you can now pass in
$opts = array(
'email' => 'from_email@aol.com',
'name' => 'Bob Smith'
);
*/
$db = DB::getInstance();
$query = $db->query("SELECT * FROM email");
$results = $query->first();
$mail = new PHPMailer;
$mail->SMTPOptions = array(
'ssl' => array(
'verify_peer' => false,
'verify_peer_name' => false,
'allow_self_signed' => true
)
);
$mail->SMTPDebug = $results->debug_level;
Quote:We were unable to verify your account. Please try again.
(and a button that says: Resend Verification Email)
is it maybe becouse i have https now?