i am trying to have more than one line in the body of my test i am setting up for. i want some spaces and a hyperlink. or attach a shortcut to the email, whichever is easiest. can some one help me... here is my code that i am working with.
Private Sub CmdSend_Click()
Dim appOut As Outlook.Application
Dim EMailOut As Outlook.MailItem
Dim MthYr As String
Set appOut = CreateObject("Outlook.Application"
Set EMailOut = appOut.CreateItem(olMailItem)
MthYr = Format(txtDate, "mmmm - yyyy"
With EMailOut
.To = "Jared Taylor"
.Subject = "Waved Fees Report for " & MthYr
.Body = "Check It Out X:\assetmgt\Waved Fees.xls "
'.Body = "will a hyperlink fit here?"
.Display
End With
End Sub
Thank you for your help.
Smiley
Private Sub CmdSend_Click()
Dim appOut As Outlook.Application
Dim EMailOut As Outlook.MailItem
Dim MthYr As String
Set appOut = CreateObject("Outlook.Application"
Set EMailOut = appOut.CreateItem(olMailItem)
MthYr = Format(txtDate, "mmmm - yyyy"
With EMailOut
.To = "Jared Taylor"
.Subject = "Waved Fees Report for " & MthYr
.Body = "Check It Out X:\assetmgt\Waved Fees.xls "
'.Body = "will a hyperlink fit here?"
.Display
End With
End Sub
Thank you for your help.
Smiley