How Can I use ShellExcute to send an E-mail ?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi EveryBody:

I have two questions :

Is there any need to use RuneShellExcute sub with ShellExcute function or
not ?

Also

How I use the ShellExcute function to open file or send e-mail ?

any help will be appreciated

regard's
 
Is there any need to use RuneShellExcute sub with ShellExcute function or

I'm not familiar with "RuneShellExcute" (or RunShellExecute if that's
what you mean) so I don't understand the question.

How I use the ShellExcute function to open file or send e-mail ?

FYI, the System.Diagnostics.Process class encapsulates ShellExecute
calls so I recommend using that instead of calling ShellExecute
directly.

You can use it to open a file in the application registered for the
file extension, or to open the default e-mail client app to compose a
new mail (by opening a mailto: URL). You don't use ShellExecute to
actually send the e-mail.


Mattias
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top