How do I use SENDMAIL to send email from MATLAB 7.2 (R2006a) via the GMail server or Yahoo server?
16 views (last 30 days)
Show older comments
MathWorks Support Team
on 24 Jan 2013
Edited: MathWorks Support Team
on 19 Apr 2021
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
Accepted Answer
MathWorks Support Team
on 12 Jul 2016
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 Comments
Image Analyst
on 13 Dec 2014
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
on 5 Feb 2017
Edited: MathWorks Support Team
on 19 Apr 2021
>Note that the above commands are undocumented and may change in future MATLAB releases..
More Answers (1)
Iddo Weiner
on 1 Nov 2016
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
1 Comment
See Also
See Also
Categories
Find more on Web Services in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!