I would like to send a e-mail from my app, but with attachment. I don't want to use some special non-windows controls, I will be satisfied with API or WinSock use.
Thanks,
John
Printable View
I would like to send a e-mail from my app, but with attachment. I don't want to use some special non-windows controls, I will be satisfied with API or WinSock use.
Thanks,
John
This one is fairly simple:
http://forums.vb-world.net/showthrea...threadid=15558
If you go to http://www.planetsourcecode.com/vb and search for BuzMail you can download my free mail 'object' that uses the VB MAPI controls but provides a much easier way to code for them. It allows for attachments as well. With my code it would be;
Dim ThisMail as Mail
MailAddAttach ThisMail, "Document", "C:\worddoc.doc"
MailAddRecip ThisMail, "Buz", "[email protected]",0)
MailSend ThisMail
You can do a lot more with the functions provided as well. check it out!