https://support.google.com/accounts/answer/6010255?hl=en
Send Email from Matlab 2012 (Error)
1 次查看(过去 30 天)
显示 更早的评论
I am trying to send email from matlab 2012 using the following code. I just want to send a mail from my account to myself. But I am getting an error message.
mail = 'mygmail@gmail.com'; %Your GMail email address
password = 'mypassword'; %Your GMail password
Then this code will set up the preferences properly:
setpref('Internet','E_mail',mail);
setpref('Internet','SMTP_Server','smtp.gmail.com');
setpref('Internet','SMTP_Username',mail);
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','465');
Send email. The first argument is recipient.
sendmail('mymail@gmail.com','Test from MATLAB','Hello! This is a test from MATLAB!')
Error message :
Error using sendmail (line 164)
Authentication failed.
Error in email (line 15)
sendmail('mygmail@gmail.com','Test from MATLAB','Hello! This is a test
from MATLAB!')
0 个评论
采纳的回答
更多回答(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!