|
-
Aug 15th, 2000, 10:40 AM
#1
Thread Starter
Addicted Member
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.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|