jvanegmond Posted February 2, 2011 Posted February 2, 2011 Sorry to bump an old thread but can I use this code to make it work with hotmail ?No, as far as I know hotmail has never exposed emails in an atom or rss feed. Maybe it's time to make the switch? You can forward your emails from your hotmail account to your new Gmail account, so you keep both accounts but Gmail is your new mail account. github.com/jvanegmond
AutoitNew94 Posted March 2, 2011 Posted March 2, 2011 (edited) Hi, I am new to Autoit so it has been a road of trial and error, but I am trying to make the script in the beginning of this post work and am having no luck. I modified the xml section as needed. I am running windows 7 and am being prompted with an error. Could someone please help me to fix this? Thank you very much. Line 20 $Response=_INetGetSource("https://"&$Username & ":" & $Password & "@" & "gmail.google.com/gmail/feed/atom") $Response = ^ ERROR Error: Unknown function name. $Response = _INetGetSource("https://" & $Username & ":" & $Password & "@" & "gmail.google.com/gmail/feed/atom") Edited March 2, 2011 by AutoitNew94 "You're not smart enough for me to open my inbox, so stop sending me mail."
jvanegmond Posted March 3, 2011 Posted March 3, 2011 Hi, I am new to Autoit so it has been a road of trial and error, but I am trying to make the script in the beginning of this post work and am having no luck. I modified the xml section as needed. I am running windows 7 and am being prompted with an error. Could someone please help me to fix this? Thank you very much. Line 20 $Response=_INetGetSource("https://"&$Username & ":" & $Password & "@" & "gmail.google.com/gmail/feed/atom") $Response = ^ ERROR Error: Unknown function name. $Response = _INetGetSource("https://" & $Username & ":" & $Password & "@" & "gmail.google.com/gmail/feed/atom") The script worked before you started modifying it. Then maybe you did something wrong? In that case, wouldn't it only make sense to compare the original script to your new script? If you did that you would have found that you were simply missing: #include <INet.au3> On the top. github.com/jvanegmond
Skitty Posted April 16, 2012 Posted April 16, 2012 Hi!Sorry to bring the old thread up but I really need this script...Anyway, I can't download the file from the first post ("This ID doesn't exist!"). Can someone post a new link?Thanks! P.S.Is this script able to read the whole email or just the summary?Some users posted parts of the script from which we started using it in
Skitty Posted April 16, 2012 Posted April 16, 2012 OK, thanks! It doesn't look like it can read the whole email. Only summary, right?Yeah, I forgot to mention that, I never did find out how to get them.
toddcbrf2 Posted May 5, 2012 Posted May 5, 2012 orig post download link not working?? “Anyone who has never made a mistake has never tried anything new.”― Albert Einstein
TropicThunder Posted May 5, 2012 Posted May 5, 2012 orig post download link not working??Yup, it says "This ID doesn't exist!". Can OP please re-uppload?
dantay9 Posted May 5, 2012 Author Posted May 5, 2012 Not sure if it works or not, but I uploaded what I found laying around on my hard drive.
kisstom Posted July 28, 2015 Posted July 28, 2015 (edited) Hi,I see this is an old dead topic but maybe someone help.I pimp this gmail checker with a lot features and it working fine in xp but nothing in win7-8, seems$Response = _INetGetSource("https://" & $Username & ":" & $Password & "@" & "gmail.google.com/gmail/feed/atom")not get any data. Any idea?EDIT:Main problem:$oHTTP = ObjCreate("winhttp.winhttprequest.5.1") $oHTTP.Open("GET", "https://gmail.google.com/gmail/feed/atom", False) $oHTTP.SetCredentials($Username, $Password, 0) $oHTTP.Send() Local $Response = $oHTTP.ResponseTextnot works on win7-8i find a lot of page where say: use 'Msxml2.XMLHTTP.6.0' instead of 'winhttp.winhttprequest.5.1' but not works for me... Edited July 28, 2015 by kisstom
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now