Borrar filtros
Borrar filtros

Getting the error : Exception reading response; Unrecognized SSL message, plaintext connection?

5 visualizaciones (últimos 30 días)
UserName = 'email@gmail.com';
passWord = 'xxxxxx';
setpref('Internet','E_mail',UserName);
setpref('Internet','SMTP_Server','smtp.gmail.com');
setpref('Internet','SMTP_Username',UserName);
setpref('Internet','SMTP_Password',passWord);
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','587');
emailto = 'email@xxx.com'; % recipient's email
sendmail(emailto, 'My Subject', 'My message');
Getting the error : Exception reading response;
Unrecognized SSL message, plaintext connection?
I know someone got the same problem (and it was almost the same topic), but I didn't find my solution on his topic ....

Respuestas (0)

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by