I want to send an e-mail from a vb application. Currently I am using the following code that was given to me
Set olapp = CreateObject("Outlook.Application"
Set oitem = olapp.CreateItem(0)
With oitem
.To = strRecipients
.body = strContent
.Send
End With
however I do not want to be restricted to having to using outlook I was wondering is it possible to specify a ip address of a mail server or something along those lines?
Any ideas would be greatly appreciated
Hobbes
Set olapp = CreateObject("Outlook.Application"
Set oitem = olapp.CreateItem(0)
With oitem
.To = strRecipients
.body = strContent
.Send
End With
however I do not want to be restricted to having to using outlook I was wondering is it possible to specify a ip address of a mail server or something along those lines?
Any ideas would be greatly appreciated
Hobbes