This is the sendmail.ini file what to change now

# Example for a user configuration file

# Set default values for all following accounts.
defaults
logfile "\xampp\sendmail\sendmail.log"

# Mercury
account Mercury
host localhost
from postmaster@localhost
auth off

# A freemail service example
account gmail
tls on
tls_certcheck off
host smtp.gmail.com
from ****@gmail.com
auth on
user ****@gmail.com
password *******

# Set a default account
account default : Mercury
link|improve this question
feedback

migrated from stackoverflow.com Dec 5 '09 at 1:10

This question came from our site for professional and enthusiast programmers.

1 Answer

Needs to add [port 587] in the config [1]

account Gmail
tls on
port 587
tls_certcheck off
host smtp.gmail.com
from ***@gmail.com
auth on
user ***@gmail.com
password mygmailpassword

# Set a default account
account default : Gmail
link|improve this answer
feedback

Your Answer

 
or
required, but never shown