Regarding sending mail to GMAIL

2 次查看(过去 30 天)
THANGARASU P
THANGARASU P 2013-7-28
Dear sir,
I have tried to send mail using existing code available from website. But i am unable use. Following error i get so please give me suggestion .
whether any setting need to be changed to mail via gmail or from matlab(2010b) please suggest these too. I could not find any mistakes in code
code I Used :(took from mathworks website)
myaddress = 'vvv@gmail.com';///
mypassword = 'yyyyy'; /// password not shared
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.setProperty('mail.smtp.socketFactory.port','465');
sendmail(myaddress, 'Gmail Test', 'This is a test message.');
Error I got:
E rror using sendmail (line 164) Exception reading response; sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target
Error in gamil_test_test (line 38)
sendmail(myaddress, 'Gmail Test', 'This is a test message.');

回答(1 个)

Walter Roberson
Walter Roberson 2013-7-28

标签

产品

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by