Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Outlook Express

Status
Not open for further replies.

cpfc

Programmer
Aug 4, 2003
23
0
0
GB
Hello...
Is it possible to open Outlook Express 6, log onto my identity and send a simple email in vc++6 code? (Preferably with Outlook Express hidden at all times)

Any help would be extremely appreciated and thanks in advance...
 
Well it might be possible, but no one in their right mind would try to do it just to send an email. [lol]

SMTP is one of the easiest internet protocols to implement from a client perspective. That would be much simpler than trying to manipulate an external process that was not designed to be manipulated.

"But, that's just my opinion... I could be wrong."

-pete
 
Thanks for reply...
Wouldn't know where to start... :-(

Say I had the following function:
Code:
void SendEmail(const char * ToAddress, const char * MessageSubject, const char * MessageBody)
{
}

Could you fill in the blanks? :cool:
 
>> Wouldn't know where to start...
[idea]
Perhaps you should consider hiring a professional software developer for the project?

-pete
 
hmmm...
Only having troubles sending emails...
Everything else is complete...
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top