When I send an Email I use the following Code:

A.MAPISession1.SignOn

With A.MAPIMessages1
.MsgIndex = -1
.RecipDisplayName = A.txtEmail.Text
.MsgSubject = "Subject Text Here"
.MsgNoteText = "This is a Test"
.AttachmentName = "File.TXT"
.AttachmentPathName = "C:\File.TXT"
.SessionID = A.MAPISession1.SessionID
.Send
End With

A.MAPISession1.SignOff

What I don't like is that the Attachment is always first on the email and my text follows the attachment. Is there a way to have the attachment follow my text? I have thought about putting spaces in my note and try and position it that way but I would like a better solution.

Thanks in advance.