|
-
Dec 9th, 1999, 09:55 PM
#1
Thread Starter
Member
I am making An email program and I want to be able to change the name and email adress of myself so that what people see when they look at my email is that somebody different sent it, how? this is my code to send emails so far:
[code]
On Error Resume Next
MAPIMessages1.MsgIndex = -1
MAPIMessages1.Compose
MAPIMessages1.RecipAddress = txtRecipient.Text
MAPIMessages1.MsgSubject = txtSubject.Text
MAPIMessages1.MsgNoteText = txtMessage.Text
MAPIMessages1.ResolveName
MAPIMessages1.Send False
[\code]
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
|