in the code view ==>click references in the TOOLS menu==>add the references to Outlook
Dim outApp As Outlook.Application
Dim outMessage As Outlook.MailItem
'create outlook instance
Set outApp = CreateObject("Outlook.application"
Set outMessage = outApp.CreateItem(olMailItem)
'assign the message variables
With outMessage
.BCC = strBCC
.Subject = "Notice" & Me.NewsLetterDate.Value
.Body = Me.NewsLetter.Value
End With
'send the message
outMessage.Send
hth
Bastien
There are many ways to skin this cat,
but it still tastes like chicken
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.