skip to Main Content

I am using go daddy cpanel email to send an email using laravel. This is the code i am using:

MAIL_DRIVER=SMTP
MAIL_HOST=sg3plcpnl0013.prod.sin3.secureserver.net
MAIL_PORT=465
MAIL_USERNAME=myusername
MAIL_PASSWORD=mypassword
MAIL_ENCRYPTION=tls
MAIL_FROM_NAME="Contact Us"
[email protected]

Error:
Swift_TransportException
Connection to tcp://sg3plcpnl0013.prod.sin3.secureserver.net:465 Timed Out

2

Answers


  1. If your Laravel hosted on the godaddy you may just use directyle the sendmail function for your Email service notifications.

    Login or Signup to reply.
  2. please change APP_URL=http://localhost to
    URL=http://your-ip-address

    it’s in the .env
    sorry my english is not good

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search