Error using sendmail (line 172)
2 次查看(过去 30 天)
显示 更早的评论
Hello, Does someone can help me,
the fact is : I obtain the following error when using the function sendmail
Error using sendmail (line 172)
Could not connect to SMTP host: smtp.gmail.com, port: 25;
Network is unreachable: connect
I am using matlab R2013b (8.2.0.701) with windows 7 My computer is in a network using proxy and I already configure the proxy for matlab internet connection in preferences > Web > Internet connection. When I test the connection it marks Success! And the gmail that I use for login open when using firefox. Thanks in Advance Andy
2 个评论
riaz khan
2018-9-22
编辑:Walter Roberson
2018-9-22
can any one help me plz
Error in VideoReader (line 172)
obj.init(fileName);
Error in Untitled8 (line 1)
trafficVid = VideoReader('1.avi')
Walter Roberson
2018-9-22
riaz khan please create a new Question for that. When you do, post the complete error message.
回答(1 个)
Shruti Sapre
2015-11-16
Hi Andy,
MATLAB started using Java 7 from R2013b. Java 7 uses IPv6 by default.
Could you please try the below workaround:
1) At the command line, enter:
>> which -all java.opts
If it says "'java.opts' not found.", then proceed to step 2.
2) Go to your MATLAB startup directory. Create a file "java.opts" with the below one line:
-Djava.net.preferIPv4Stack=true
3) Restart MATLAB, and try the "sendmail" function again.
If a "java.opts" file was already found in step 1, open that file. Copy and paste this line into that file:
-Djava.net.preferIPv4Stack=true
Save the file, then restart MATLAB.
This will tell MATLAB's version of Java to use IPv4 for communication when possible.
Hope this helps!
-Shruti
另请参阅
类别
在 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!