Jump to content

Recommended Posts

Posted

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.
  • 1 month later...
  • Replies 52
  • Created
  • Last Reply

Top Posters In This Topic

Top Posters In This Topic

Posted (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 by AutoitNew94
"You're not smart enough for me to open my inbox, so stop sending me mail."
Posted

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.

  • 3 months later...
  • 1 month later...
  • 9 months later...
Posted

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

Posted

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.

  • 3 weeks later...
  • 3 years later...
Posted (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.ResponseText

not works on win7-8

i find a lot of page where say: use 'Msxml2.XMLHTTP.6.0' instead of 'winhttp.winhttprequest.5.1' but not works for me...

Edited by kisstom

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...