Hi All,
I am using vbsendmail with VB6 to send emails from
an VB application. I have got VBSendmail to work with Outlook.
Now we have switched to Exchange, vbsendmail does not
send a mail and there is no error either. Would anyone know why this
could be happening or point me in the right direction.
Do you need to Log on with Exchange?
With poSendMail
poSendMail.Pers istentSettings = True
.SMTPHostValida tion = VALIDATE_NONE
.EmailAddressVa lidation = VALIDATE_SYNTAX
.Delimiter = ";"
.SMTPHost = sEmailServer
.SMTPPort = 25
.FromDisplayNam e = sFromName
.From = sFromAddress
.Recipient = sEmailAddress
.ReplyToAddress = sReplyToAddress
.subject = sSubject
.Message = sBody
.Send
End With
Thanks
Shutdown123
I am using vbsendmail with VB6 to send emails from
an VB application. I have got VBSendmail to work with Outlook.
Now we have switched to Exchange, vbsendmail does not
send a mail and there is no error either. Would anyone know why this
could be happening or point me in the right direction.
Do you need to Log on with Exchange?
With poSendMail
poSendMail.Pers istentSettings = True
.SMTPHostValida tion = VALIDATE_NONE
.EmailAddressVa lidation = VALIDATE_SYNTAX
.Delimiter = ";"
.SMTPHost = sEmailServer
.SMTPPort = 25
.FromDisplayNam e = sFromName
.From = sFromAddress
.Recipient = sEmailAddress
.ReplyToAddress = sReplyToAddress
.subject = sSubject
.Message = sBody
.Send
End With
Thanks
Shutdown123
Comment