08-29-2018, 04:11 AM
(08-28-2018, 01:47 PM)SirAirHard Wrote: Hello
i have tryed tu report a bug, but it doesn´t work...
i have a problem with the verification email.
if a user registers the system sends an verfy email and he gets an error and is asked to send another verify Email.
and this email gets verifyed.
i had a look at the code and i can´t realy find a differenc...
thanks for your help
Can you edit /users/helpers/helpers.php find the function "function email($to,$subject,$body,$opts=[],$attachment=false){"
and add this code
Code:
$mail->SMTPOptions = array(
'ssl' => array(
'verify_peer' => false,
'verify_peer_name' => false,
'allow_self_signed' => true
)
);