When I use the sendmail function, I got this error 'Could not connect to SMTP host: smtp.gmail.com, port: 465, response: -1' How can I fix this error?
Show older comments
Here is my code:
myaddress='example';
mypassword='example';
setpref('Internet','E_mail',myaddress);
setpref('Internet','SMTP_Server','smtp.gmail.com');
setpref('Internet','SMTP_Username',myaddress);
setpref('Internet','SMTP_Password',mypassword);
props = java.lang.System.getProperties;
props.setProperty('mail.smtp.auth','true');
props.setProperty('mail.smtp.socketFactory.class','javax.net.ssl.SSLSocketFactory');
props.remove( 'mail.smtp.socketFactory.class' );
props.setProperty('mail.smtp.socketFactory.port','465');
props.setProperty('mail.smtp.starttls.enable','true');
sendmail(myaddress,'test','This is a test.');
After running it, I got:
'Error using sendmail (line 179)
Could not connect to SMTP host: smtp.gmail.com, port: 465, response: -1'
What does it mean? Why I can't connect to SMTP host?
Accepted Answer
More Answers (0)
Categories
Find more on Web Services in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!