roriscrave
Advanced OT User
- Joined
- Dec 7, 2011
- Messages
- 1,210
- Solutions
- 35
- Reaction score
- 206
HI!
How can i configure Znote AAC recovery page?
I downloaded it: PHPMailer 6.0.7
And extracted in my website folder, and renamed this folder to: PHPMailer
but i dont know what i need to put here:
What i need to put in host, port, email, username, pass, etc....??
How can i configure Znote AAC recovery page?
I downloaded it: PHPMailer 6.0.7
And extracted in my website folder, and renamed this folder to: PHPMailer
but i dont know what i need to put here:
PHP:
$config['mailserver'] = array(
'register' => false, // Send activation mail
'accountRecovery' => true, // Recover username or password through mail
'host' => "mailserver.znote.eu", // Outgoing mail server host.
'securityType' => 'ssl', // ssl or tls
'port' => 465, // SMTP port number - likely to be 465(ssl) or 587(tls)
'email' => '[email protected]',
'username' => '[email protected]', // Likely the same as email
'password' => 'emailpassword', // The password.
'debug' => false, // Enable debugging if you have problems and are looking for errors.
'fromName' => $config['site_title'],
);
What i need to put in host, port, email, username, pass, etc....??