作者MPL (:))
看板MATLAB
标题[设定] 请问有人知道如何用MATLAB寄信到gmail吗?
时间Fri Feb 4 12:01:49 2011
我尝试想要使用MATLAB寄信到我的gmail
网路上看到有人的设定如下
--
% Define these variables appropriately:
mail = '[email protected]'; %Your GMail email address
password = 'testing1234'; %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 the email. Note that the first input is the address you are sending
the email to
sendmail('[email protected]','Test from MATLAB','Hello! This
is a test from MATLAB!')
--
可是我依照他的指令之後 都会得到这样的错误
Error using ==> sendmail at 168
Could not connect to SMTP host: smtp.gmail.com, port: 25;
Connection timed out: connect
也尝试找了其他人的程式 可是都是遇到同样的错误
不知道版友有没有人刚好知道怎麽设定
谢谢了!
--
mpl@Swinburne University of Technology, Melbourne,袋鼠国
http://blog.yam.com/mplnote
--
※ 发信站: 批踢踢实业坊(ptt.cc)
◆ From: 136.186.19.184
1F:→ MPL:自问自答,最後发现是学校档掉了 回家一用就有...- - 02/04 15:30
2F:→ yehjfu:我一开始也不能用,後来把Mail改成MailAdress 05/27 16:39
3F:→ yehjfu:原来是我之前打错,mail就可以了.... = = 05/28 20:40