JABOSL
Programmer
- Jan 25, 2006
- 35
I just started writing a program to send the contents of a text box via email. I click the button and it pops up a new mail message with prefilled to, subject and body fields and leaves it there for me to modify and send. As mailto: doesn't allow large bodies I'm using MAPI to do this. What I didn't plan for is when I execute
it brings up a box that says:
Setting up Internet Mail
The Internet Connection Wizard has detected previously installed e-mail software. You can have your Internet mail account settings imported, so you can continue to use them with your new mail program.
Then ask me if I want to create a new mail account or import it from Microsoft Windows Messaging or Exchange or Outlook
What's up with this? I have Mozilla Thunderbird as my defualt mail client but I also use Outlook (not express) for another email account. Both packages work fine and have for almost a year now.
I thought this MAPI was supposed to pull up a new message in my default mail program.
Any ideas?
Code:
Dim myMAPISession As New MSMAPI.MAPISession
Dim myMAPIMessage As New MSMAPI.MAPIMessages
myMAPISession.SignOn()
Setting up Internet Mail
The Internet Connection Wizard has detected previously installed e-mail software. You can have your Internet mail account settings imported, so you can continue to use them with your new mail program.
Then ask me if I want to create a new mail account or import it from Microsoft Windows Messaging or Exchange or Outlook
What's up with this? I have Mozilla Thunderbird as my defualt mail client but I also use Outlook (not express) for another email account. Both packages work fine and have for almost a year now.
I thought this MAPI was supposed to pull up a new message in my default mail program.
Any ideas?