Borrar filtros
Borrar filtros

Regarding sending mail to GMAIL

2 visualizaciones (últimos 30 días)
THANGARASU P
THANGARASU P el 28 de Jul. de 2013
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.');

Respuestas (1)

Walter Roberson
Walter Roberson el 28 de Jul. de 2013

Etiquetas

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by