Error using sendmail (line 172)
2 views (last 30 days)
Show older comments
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 Comments
riaz khan
on 22 Sep 2018
Edited: Walter Roberson
on 22 Sep 2018
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
on 22 Sep 2018
riaz khan please create a new Question for that. When you do, post the complete error message.
Answers (1)
Shruti Sapre
on 16 Nov 2015
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
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!