- Gmail requires the account to have the option “Allow less secure apps” enabled in order to send mails from this code. Please note that this considerably reduces the security of your Gmail account. For further details, you can refer to the following thread: https://in.mathworks.com/matlabcentral/answers/433031-sending-e-mail-error#answer_349841
- It is recommended to use port 587 over port 465 for SMTP communications. Modern SMTP servers use port 587 as the default mail communication port and it is thus more reliable than port 465.
- Kindly verify that the network being used allows mails to be sent through less secure protocols. Additionally, ensure any firewalls or antivirus softwares are not blocking this communication.
- This error could also occur if the server certificate is not trusted.
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?
14 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Chaoran Han
le 9 Août 2021
Commenté : Chaoran Han
le 13 Août 2021
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?
0 commentaires
Réponse acceptée
Gargi Patil
le 13 Août 2021
Hi!
The given error could not be reproduced and the code shared by you successfully sends a mail as expected on MATLAB R2020b. Therefore, the origin of the error lies beyond the code.
The following reasons could be the cause:
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Web Services dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!