Is it possible to allow people to input information and then when the click submit, have the information sent to my email account? If so, how would I go about doing this?
I'm using VB6.
abstrait 0 Newbie Poster
Recommended Answers
Jump to PostYou will need to reference - Microsoft Outlook Object library
Dim Msg As String Dim objOutlook As Object Dim objItem As MailItem Set objOutlook = CreateObject("Outlook.Application") Set objItem = objOutlook.CreateItem(olMailItem) Msg = "Here is the body text" Msg = Msg & vbCrLf Msg = Msg & "Over …
All 4 Replies
purplegerbil 13 Junior Poster in Training
Yomet 1 Junior Poster
Comatose 290 Taboo Programmer Team Colleague
Yomet 1 Junior Poster
Be a part of the DaniWeb community
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.