Sorry - I wasn't clear

If I comment out the line that adds an attachment I get the error.

'     .Attachments.Add sFile

So unless I have something attached to the mail item, I get the error. So the intuitive thought would be a simple little macro like this would send a email (text only)


Option Explicit
Sub SendEmail()
    Dim OutApp As Object
    Dim OutMail As Object
    
    Dim sBody As String, sRecipiant as string
    
    sBody = "This is an email message"
    sRecipiant = "me@here.net"
    Set OutApp = CreateObject("Outlook.Application")
    Set OutMail = OutApp.CreateItem(0)
    With OutMail
        .To = sRecipiant
        .CC = vbNullString
        .BCC = vbNullString
        .Subject = "email test -- " & Format(Now, "General Date")
        .Body = sBody
        .ReadReceiptRequested = False
        .Send
    End With
    Set OutMail = Nothing
    Set OutApp = Nothing
        
End Sub