Can anyone help me ??
I believe I am using Rich Text Format.
Here is the exact Script:
>>>>>>>>>>>>>>>>>>>>>>>>>>>>
Sub Main()
Dim objOutlook As Object
Dim objOutlookMsg As Object
rem ********** send e-mail ***********************************************
Set objOutlook = CreateObject("Outlook.Application")
Set objOutlookMsg = objOutlook.CreateItem(olMailItem)
With objOutlookMsg
.To = "Dona.peschko@bicworld.com"
.Subject = "TEST of Auto- Daily Reports"
.Body = "Daily Numbers generated via scripts on Cognos Servers" & vbCRLF
.Body = .Body & VbCRLF & "Please contact me if you have questions."
.Send
End With
Set objOutlook = Nothing
Set objOutlookMsg = Nothing
End Sub
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
Here is the EXACT output of this script:
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
Daily Numbers generated via scripts on Cognos ServersPlease contact me if you have questions.
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
Please let me know if there are any other things I might try. Thanks for your replies
I believe I am using Rich Text Format.
Here is the exact Script:
>>>>>>>>>>>>>>>>>>>>>>>>>>>>
Sub Main()
Dim objOutlook As Object
Dim objOutlookMsg As Object
rem ********** send e-mail ***********************************************
Set objOutlook = CreateObject("Outlook.Application")
Set objOutlookMsg = objOutlook.CreateItem(olMailItem)
With objOutlookMsg
.To = "Dona.peschko@bicworld.com"
.Subject = "TEST of Auto- Daily Reports"
.Body = "Daily Numbers generated via scripts on Cognos Servers" & vbCRLF
.Body = .Body & VbCRLF & "Please contact me if you have questions."
.Send
End With
Set objOutlook = Nothing
Set objOutlookMsg = Nothing
End Sub
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
Here is the EXACT output of this script:
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
Daily Numbers generated via scripts on Cognos ServersPlease contact me if you have questions.
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
Please let me know if there are any other things I might try. Thanks for your replies