- 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 ビュー (過去 30 日間)
古いコメントを表示
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 件のコメント
採用された回答
Gargi Patil
2021 年 8 月 13 日
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:
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Web Services についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!