I am using the following code from MS’s website. How to Create a Recurring E-mail Message. Where I type the text for “NewItem.Body” I want to be able to type more than one paragraph, so I need to know how to indicate a hard return, if possible. Also, I want the recurring e-mail to have the signature that automatically inserted on new messages. Is there a way to do those two additional things? TIA.
Sub Item_PropertyChange (ByVal Name)
Select Case Name
Case “Status”
if Item.Status = 2 then ‘2 = Completed
Set NewItem = Application.CreateItem(O)
NewItem.To = “myemailaddress@myisp.com”
NewItem.Bcc = “bccemailaddress@theirisp.com”
NewItem.Recipients.ResolveAll
NewItem.Subject = “This is the message subject text.”
NewItem.Body = “This is text that will appear in the body of the message.”
NewItem.Display
End IF
End Select
End Sub