|
-
Jan 24th, 2000, 10:24 PM
#1
Thread Starter
New Member
If you know how to do this, then please help me as soon as posible!
Thank you!
-
Jan 24th, 2000, 11:23 PM
#2
Hmmm... Actually you can't! Simply because Word can't send any e-mail. It actually just use the MAPI client (Outlook for example) that you have installed.
What you can do, if you want to use e-mail, is to add the MAPI controls to a form and use code simular to this to send it:
MAPISession1.SignOn
MAPIMessages1.SessionID = MAPISession1.SessionID
MAPIMessages1.Compose
MAPIMessages1.MsgSubject = "Testing..."
MAPIMessages1.MsgNoteText = "This is the body of my email"
MAPIMessages1.RecipAddress = "[email protected]"
MAPIMessages1.RecipDisplayName = MAPIMessages1.RecipAddress
MAPIMessages1.Send
MAPISession1.SignOff
Good luck!
------------------
Joacim Andersson
[email protected]
[email protected]
www.YellowBlazer.com
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
|