
How to send email without smtp server.
Quote:
> I have made an email program that does not need smtp server
> and directly send email to receiptor.
This approach is fraught with problems. How do you correlate email addresses
address of the user x? How do you send mail to x when his machine is not
online? How do you send mail to him if his receiving application is not
running? How do you send mail to people in enterprises who are behind
firewalls?
Quote:
> But I can't find information or sample code in internet.
In the Platform SDK there is a trivial distributed application whose client
and server components use sockets over TCP/IP to pass messages in its
samples\netds\WinSock\simple
directory. If you don't have the SDK you can download it.
What you are planning sounds more like a kind of instant messaging than
email to me. You might want to search at http://msdn.microsoft.com for
"Using the RTC Client API" for some other ideas.
Quote:
> Thank you.
You are welcome.
Quote:
> Have a nice day.
It's gray and dreary here, I hope it is better where you are.
Regards,
Will