I am writing a small access aplication with email output via Outlook.
I have written and tested the following which works
Set objOutlook = CreateObject("Outlook.application")
Set objEmail = objOutlook.CreateItem(olMailItem)
With objEmail
.To = ema
.subject = noteb
.body = notec & Chr$(13) & notea & noted
.Send
End With
However I have now been told that som clients use Outlook Express as opposed to Outlook.
What are the differences if any and if so how can I identify which client
Thanks
I have written and tested the following which works
Set objOutlook = CreateObject("Outlook.application")
Set objEmail = objOutlook.CreateItem(olMailItem)
With objEmail
.To = ema
.subject = noteb
.body = notec & Chr$(13) & notea & noted
.Send
End With
However I have now been told that som clients use Outlook Express as opposed to Outlook.
What are the differences if any and if so how can I identify which client
Thanks