I'm using Godaddy account with domain.But I want to send Email Godaddy domain email id to gmail email id But.But it' not working.I'm using smtplib library for sending mail.
import smtplib
server = smtplib.SMTP_SSL('HOST',PORT)
server.login('Email ID','Password')
server.sendmail('from','to','subject')
I'm using above code that give no error during run.and each code run successfully and login also accepted.But when i check email ID there no email found in gmail inbox and domain send email folder. What is the mistake in my email sending procedure.