Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 203
Default CDO to Retrieve E-mail

Hello!

I have succesfully used Ron DeBruin's CDO instructions to set up a very nice
email sending application.

Is there a way similar to CDO to check and retrieve emails without going
through Outlook or any other email client?

Thanks in advance,

Albert C.
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 2,836
Default CDO to Retrieve E-mail

I think you need Outlook, or some kind of SMTP (you could use Google) to do
it for you. Maybe this will help:
http://www.troyeesoft.com/offline-link-extractor.htm

Good luck,
Ryan---
--
Ryan---
If this information was helpful, please indicate this by clicking ''Yes''.


"Albert" wrote:

Hello!

I have succesfully used Ron DeBruin's CDO instructions to set up a very nice
email sending application.

Is there a way similar to CDO to check and retrieve emails without going
through Outlook or any other email client?

Thanks in advance,

Albert C.

  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 9,101
Default CDO to Retrieve E-mail

the code would depend on the format your e-mail server used. for example a
POP server would use different commands than other servers. If your e-mail
account had web access you can download the email using a werb browser
approach.

"ryguy7272" wrote:

I think you need Outlook, or some kind of SMTP (you could use Google) to do
it for you. Maybe this will help:
http://www.troyeesoft.com/offline-link-extractor.htm

Good luck,
Ryan---
--
Ryan---
If this information was helpful, please indicate this by clicking ''Yes''.


"Albert" wrote:

Hello!

I have succesfully used Ron DeBruin's CDO instructions to set up a very nice
email sending application.

Is there a way similar to CDO to check and retrieve emails without going
through Outlook or any other email client?

Thanks in advance,

Albert C.

  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 203
Default CDO to Retrieve E-mail

Hi Joel,
Thanks for your quick response. I'm thinking something more in the lines of
POP. Could you give me some suggestions for the commands?
Thanks,
Albert C.

"Joel" wrote:

the code would depend on the format your e-mail server used. for example a
POP server would use different commands than other servers. If your e-mail
account had web access you can download the email using a werb browser
approach.

"ryguy7272" wrote:

I think you need Outlook, or some kind of SMTP (you could use Google) to do
it for you. Maybe this will help:
http://www.troyeesoft.com/offline-link-extractor.htm

Good luck,
Ryan---
--
Ryan---
If this information was helpful, please indicate this by clicking ''Yes''.


"Albert" wrote:

Hello!

I have succesfully used Ron DeBruin's CDO instructions to set up a very nice
email sending application.

Is there a way similar to CDO to check and retrieve emails without going
through Outlook or any other email client?

Thanks in advance,

Albert C.

  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 9,101
Default CDO to Retrieve E-mail

Read this webpage

I don't know how much you understand network protocols.

I found information to open a Telnet session to get email. A telnet
oprotocol goes back to the early 1970's. It was 1st developed for Telnet
terminals that were operating at 75 Baud (75 bits a second). That is about
one line of data a second. Very slow.

Telnet now will run at you connection speed which is probably greater than 1
million bits a second. But it requires issuing one comand and then waiting
for the response. and the return message will be a string that you will have
to process. The response could be an email message or an error message. You
will have to intepret each type of response in your software. This may be
complicated. I haven't tried it myself. You may want to open an interactive
window where the user will type commands and get responses on the window.

FTP is similar to Telnet put will put the results into a file instead
returning the message(s) into a file. Again this could be complicated.

I think the simplies approach would be to use an email program.

"Albert" wrote:

Hi Joel,
Thanks for your quick response. I'm thinking something more in the lines of
POP. Could you give me some suggestions for the commands?
Thanks,
Albert C.

"Joel" wrote:

the code would depend on the format your e-mail server used. for example a
POP server would use different commands than other servers. If your e-mail
account had web access you can download the email using a werb browser
approach.

"ryguy7272" wrote:

I think you need Outlook, or some kind of SMTP (you could use Google) to do
it for you. Maybe this will help:
http://www.troyeesoft.com/offline-link-extractor.htm

Good luck,
Ryan---
--
Ryan---
If this information was helpful, please indicate this by clicking ''Yes''.


"Albert" wrote:

Hello!

I have succesfully used Ron DeBruin's CDO instructions to set up a very nice
email sending application.

Is there a way similar to CDO to check and retrieve emails without going
through Outlook or any other email client?

Thanks in advance,

Albert C.



  #6   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 203
Default CDO to Retrieve E-mail

Thank you sir,
I'll give it a shot.
If I get it to work I'll post it.
Best regards,
Albert C.

"Joel" wrote:

Read this webpage

I don't know how much you understand network protocols.

I found information to open a Telnet session to get email. A telnet
oprotocol goes back to the early 1970's. It was 1st developed for Telnet
terminals that were operating at 75 Baud (75 bits a second). That is about
one line of data a second. Very slow.

Telnet now will run at you connection speed which is probably greater than 1
million bits a second. But it requires issuing one comand and then waiting
for the response. and the return message will be a string that you will have
to process. The response could be an email message or an error message. You
will have to intepret each type of response in your software. This may be
complicated. I haven't tried it myself. You may want to open an interactive
window where the user will type commands and get responses on the window.

FTP is similar to Telnet put will put the results into a file instead
returning the message(s) into a file. Again this could be complicated.

I think the simplies approach would be to use an email program.

"Albert" wrote:

Hi Joel,
Thanks for your quick response. I'm thinking something more in the lines of
POP. Could you give me some suggestions for the commands?
Thanks,
Albert C.

"Joel" wrote:

the code would depend on the format your e-mail server used. for example a
POP server would use different commands than other servers. If your e-mail
account had web access you can download the email using a werb browser
approach.

"ryguy7272" wrote:

I think you need Outlook, or some kind of SMTP (you could use Google) to do
it for you. Maybe this will help:
http://www.troyeesoft.com/offline-link-extractor.htm

Good luck,
Ryan---
--
Ryan---
If this information was helpful, please indicate this by clicking ''Yes''.


"Albert" wrote:

Hello!

I have succesfully used Ron DeBruin's CDO instructions to set up a very nice
email sending application.

Is there a way similar to CDO to check and retrieve emails without going
through Outlook or any other email client?

Thanks in advance,

Albert C.

  #7   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 203
Default CDO to Retrieve E-mail

Ooops, I didnt get the address of the page you mentioned. Could you post it
again please?
Thanks.

"Joel" wrote:

Read this webpage

I don't know how much you understand network protocols.

I found information to open a Telnet session to get email. A telnet
oprotocol goes back to the early 1970's. It was 1st developed for Telnet
terminals that were operating at 75 Baud (75 bits a second). That is about
one line of data a second. Very slow.

Telnet now will run at you connection speed which is probably greater than 1
million bits a second. But it requires issuing one comand and then waiting
for the response. and the return message will be a string that you will have
to process. The response could be an email message or an error message. You
will have to intepret each type of response in your software. This may be
complicated. I haven't tried it myself. You may want to open an interactive
window where the user will type commands and get responses on the window.

FTP is similar to Telnet put will put the results into a file instead
returning the message(s) into a file. Again this could be complicated.

I think the simplies approach would be to use an email program.

"Albert" wrote:

Hi Joel,
Thanks for your quick response. I'm thinking something more in the lines of
POP. Could you give me some suggestions for the commands?
Thanks,
Albert C.

"Joel" wrote:

the code would depend on the format your e-mail server used. for example a
POP server would use different commands than other servers. If your e-mail
account had web access you can download the email using a werb browser
approach.

"ryguy7272" wrote:

I think you need Outlook, or some kind of SMTP (you could use Google) to do
it for you. Maybe this will help:
http://www.troyeesoft.com/offline-link-extractor.htm

Good luck,
Ryan---
--
Ryan---
If this information was helpful, please indicate this by clicking ''Yes''.


"Albert" wrote:

Hello!

I have succesfully used Ron DeBruin's CDO instructions to set up a very nice
email sending application.

Is there a way similar to CDO to check and retrieve emails without going
through Outlook or any other email client?

Thanks in advance,

Albert C.

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Jump to Yahoo Mail with Active Cell Contents, and then perform asearch in the Search Mail Box Mike C[_5_] Excel Programming 0 March 15th 09 12:23 AM
Error: cannot load the mail service. Check your mail installation. Brad Bowser Excel Discussion (Misc queries) 0 December 20th 05 10:03 PM
Creating TWO-WAY E-Mail Attachments with 'BeforeSave Events' in Code for 2nd E-Mail Chuckles123[_112_] Excel Programming 0 September 8th 05 05:56 PM
Retrieve data from e-mail attachment Joe Adams Excel Programming 1 September 4th 03 09:47 PM


All times are GMT +1. The time now is 04:10 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"