How would I go about writing an E-mail checker?

Blitz3D Forums/Blitz3D Programming/How would I go about writing an E-mail checker?

WERDNA(Posted 2009) [#1]
Hey,

Just wondering how I would go about writing a blitz program that
can access my e-mail?

I find it annoying checking the family e-mail all the time, and having
to check through several hundred pointless e-mail to see if there
is anything important.(I keep up on my e-mail. My family doesn't :)

So basically, I would like to know how to A: access e-mail through
a blitz program, and B: interact with e-mail, such as deleting, moving, etc.

I can figure out the fine details myself, basically all I want to know
is how to access my e-mail to begin with.(The family e-mail is outlook express)


Thanks if you can help me out!

WERDNA


Flemmonk(Posted 2009) [#2]
Well you need to know first what protocol the e-mail is been accessed with, whether its a POP3, IMAP or Exchange mailbox, etc...

Next you would need to do a little bit of searching and find a windows DLL library that someone has written that would facilitate e-mail access for you (because you dont want to write your own POP3/IMAP/EXC client) and make a .decls file containing all the declared functions you wish to use and then start writting your Blitz E-mail program.


WERDNA(Posted 2009) [#3]
Ok.

Thanks Flemmonk!


BlitzSupport(Posted 2009) [#4]

you dont want to write your own POP3/IMAP/EXC client



Do not underestimate the power of the Code Archives!

Some POP3 examples (suitable for most home users at least)...

POP3 email retrieval
Mailman
Mail Functions


WERDNA(Posted 2009) [#5]
COOL!

Thanks James!

This should come in handy :)

WERDNA