|
-
Aug 14th, 2000, 08:40 AM
#1
Thread Starter
Junior Member
I want to make part of my self standing .exe file (written in VB) send email.
I don't want the progra to spawn Outlook or anything, and I want people to be able to do it without having any email software configured.
Any way I can do this in VB5 Ent Ed?
Thanks
-
Aug 15th, 2000, 01:11 PM
#2
New Member
Private Sub Form_Load()
Winsock1.Connect server, 25
End Sub
Private Sub Winsock_Connect()
Winsock1.SendData "From:[email protected]"
Winsock1.SendData "To:[email protected]"
Winsock1.SendData "Subject:[email protected]"
Winsock1.SendData "Hello World!"
Winsock1.Close
Ens Sub()
-
Aug 15th, 2000, 01:56 PM
#3
Addicted Member
heh
it is not that easy man,
i have written mine and it supports sending/receiving multiple attachments, as well as BASE64 encryption algorithm, and it took me a good month.
good luck,
-
Aug 16th, 2000, 07:53 AM
#4
Thread Starter
Junior Member
Tunas - What is this?
Your winsock idea sounds too easy. How would it know where it was sending the data?
-
Aug 16th, 2000, 04:03 PM
#5
Member
if you dont know how the mail protocol works, you should check the smtp rfc:
http://www.cis.ohio-state.edu/rfc/rfc0821.txt
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|