How do I use SENDMAIL to send email from MATLAB 7.2 (R2006a) via the GMail server or Yahoo server?
18 次查看(过去 30 天)
显示 更早的评论
MathWorks Support Team
2013-1-24
编辑: MathWorks Support Team
2021-4-19
I would like to send an email from within MATLAB via the GMail/Yahoo server. If I try to do this using a script such as the following:
Using Gmail Server:
setpref('Internet','SMTP_Server','smtp.gmail.com');
setpref('Internet','E_mail','an.example.email.address@gmail.com');
sendmail('an.example.email.address@gmail.com','Test email', 'Test');
Using Yahoo Server:
setpref('Internet','SMTP_Server','smtp.mail.gmail.com');
setpref('Internet','E_mail','an.example.email.address@yahoo.com');
sendmail('an.example.email.address@yahoo.com','Test email', 'Test');
I receive the following error: ERROR: ??? Error using ==> sendmail 530 5.7.0 Must issue a STARTTLS command first b19sm1973874ana
采纳的回答
MathWorks Support Team
2016-7-12
This change has been incorporated into the documentation in Release 2011a (R2011a). For previous releases, read below for any additional information:
To send email using SENDMAIL via the GMail/Yahoo server, you can execute the following in the MATLAB Prompt:
Gmail Server:
% Define these variables appropriately:
mail = 'sendemail.example.mathworks@gmail.com'; %Your GMail email address
password = 'testing1234'; %Your GMail password
setpref('Internet','SMTP_Server','smtp.gmail.com');
Yahoo Server:
% Define these variables appropriately:
mail = 'sendemail.example_mathworks@yahoo.com'; %Your Yahoo email address
password = 'testing1234'; %Your Yahoo password
setpref('Internet','SMTP_Server','smtp.mail.yahoo.com');
Gmail/Yahoo Servers:
setpref('Internet','E_mail',mail);
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 the email. Note that the first input is the address you are sending the email to
sendmail(mail,'Test from MATLAB','Hello! This is a test from MATLAB!')
In R2013a, the following command might also resolve the issue:
props.setProperty('mail.smtp.starttls.enable','true');
Note that the above commands are undocumented and may change in future MATLAB releases. Also, note that SENDMAIL does not support servers that require username and password authentications in MATLAB 7.1 (R14SP3) and before and hence the above commands will not work with those releases.
2 个评论
Image Analyst
2014-12-13
You have an incorrect username/password or else you have a firewall issue. Note: the Mathworks never answers questions on officially posted topics like this. You'd have to post a new question.
Bradley Stiritz
2017-2-5
编辑:MathWorks Support Team
2021-4-19
>Note that the above commands are undocumented and may change in future MATLAB releases..
更多回答(1 个)
Iddo Weiner
2016-11-1
Hi,
I'm having trouble with running this code. I tried the suggestion above:
%
% parameters
mail = 'mymail@gmail.com'; % my gmail address
password = 'mypassword'; % my gmail password
host = 'smtp.mail.com';
% preferences
setpref('Internet','SMTP_Server', host);
setpref('Internet','E_mail',mail);
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 the email
sendmail(mail,'Test from MATLAB','Hello! This is a test from MATLAB!')
But I get this error:
%
Error using sendmail (line 171)
Authentication failed.
Any ideas what might be causing this?
Thanks
另请参阅
类别
在 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!