I use the last version of ojs 2.
In the config.ins.php file it is mentioned that
Use SMTP for sending mail instead of mail()
.
If want to use mail() instead of smtp what I should do?
As it has been mentioned in may places to use smtp with gmail one should use the following
; Use SMTP for sending mail instead of mail()
smtp = On
; SMTP server settings
smtp_server = “ssl://smtp.gmail.com”
smtp_port = 465
; Enable SMTP authentication
smtp_auth = PLAIN
smtp_username = “user@gmail.com”
smtp_password = “password”
If I want use mail() what are the correct settings to use gmail?