Re: invoke user's standard mail client

2007-05-07 Thread Leo Kislov
On May 7, 2:00 pm, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > On May 7, 10:28 am, "Gabriel Genellina" <[EMAIL PROTECTED]> > wrote: > > > > > Get the pywin32 package (Python for Windows extensions) from sourceforge, > > install it, and look into the win32comext\mapi\demos directory. > > Thanks

Re: invoke user's standard mail client

2007-05-07 Thread Gabriel Genellina
En Mon, 07 May 2007 18:00:06 -0300, [EMAIL PROTECTED] <[EMAIL PROTECTED]> escribió: > On May 7, 10:28 am, "Gabriel Genellina" <[EMAIL PROTECTED]> > wrote: >> >> Get the pywin32 package (Python for Windows extensions) from >> sourceforge, >> install it, and look into the win32comext\mapi\demos

Re: invoke user's standard mail client

2007-05-07 Thread [EMAIL PROTECTED]
On May 7, 10:28 am, "Gabriel Genellina" <[EMAIL PROTECTED]> wrote: > > Get the pywin32 package (Python for Windows extensions) from sourceforge, > install it, and look into the win32comext\mapi\demos directory. Thanks for the hint, Gabriel. Wow, that's heavily spiced code! When I invoke mapisend.p

Re: invoke user's standard mail client

2007-05-07 Thread Cameron Laird
In article <[EMAIL PROTECTED]>, Cameron Laird <[EMAIL PROTECTED]> wrote: >In article <[EMAIL PROTECTED]>, >[EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: >>Hello, >> >>the simplest way to launch the user's standard mail client from a >>Python program is by creating a mailto: URL and launching the >>w

Re: invoke user's standard mail client

2007-05-07 Thread Paul Boddie
On 4 Mai, 18:54, [EMAIL PROTECTED] (Cameron Laird) wrote: > . > Portland > http://ct.enews.eweek.com/rd/cts?d=186-6281-53-799-798304-697089-0-0-0-1> > is the best standardization of this problem we have under Linux. > > I'll address Windows in a subsequent follow-up. Portl

Re: invoke user's standard mail client

2007-05-07 Thread Gabriel Genellina
En Mon, 07 May 2007 01:52:18 -0300, [EMAIL PROTECTED] <[EMAIL PROTECTED]> escribió: > On May 6, 9:50 am, "Gabriel Genellina" <[EMAIL PROTECTED]> wrote: >> On Windows you can use MAPI. > But how? I could not find any starting point. Get the pywin32 package (Python for Windows extensions) from so

Re: invoke user's standard mail client

2007-05-06 Thread [EMAIL PROTECTED]
On May 4, 11:42 am, Tim Golden <[EMAIL PROTECTED]> wrote: > I'm going to stick my neck out and say: I doubt > if there's one recognised, approved method. That > would require every email client to have a way > of accepting a command which said "Open up a new > email and put this, this, and this int

Re: invoke user's standard mail client

2007-05-06 Thread [EMAIL PROTECTED]
On May 6, 10:08 am, Stefan Sonnenberg-Carstens <[EMAIL PROTECTED]> wrote: > Stefan Sonnenberg-Carstens schrieb: > > > Gabriel Genellina schrieb: > > >> En Fri, 04 May 2007 05:07:44 -0300, [EMAIL PROTECTED] > >> <[EMAIL PROTECTED]> escribió: > > >>> the simplest way to launch the user's standard mai

Re: invoke user's standard mail client

2007-05-06 Thread [EMAIL PROTECTED]
On May 6, 9:50 am, "Gabriel Genellina" <[EMAIL PROTECTED]> wrote: > On Windows you can use MAPI. But how? I could not find any starting point. I found examples about sending mail directly, which gives me the impression that MAPI is just Microsoft's version of SMTP. This is not what I need. I need

Re: invoke user's standard mail client

2007-05-06 Thread Stefan Sonnenberg-Carstens
Stefan Sonnenberg-Carstens schrieb: > Gabriel Genellina schrieb: > >> En Fri, 04 May 2007 05:07:44 -0300, [EMAIL PROTECTED] >> <[EMAIL PROTECTED]> escribió: >> >> >> >>> the simplest way to launch the user's standard mail client from a >>> Python program is by creating a mailto: URL an

Re: invoke user's standard mail client

2007-05-06 Thread Stefan Sonnenberg-Carstens
Gabriel Genellina schrieb: > En Fri, 04 May 2007 05:07:44 -0300, [EMAIL PROTECTED] > <[EMAIL PROTECTED]> escribió: > > >> the simplest way to launch the user's standard mail client from a >> Python program is by creating a mailto: URL and launching the >> webbrowser: >> But this method is limi

Re: invoke user's standard mail client

2007-05-05 Thread Gabriel Genellina
En Fri, 04 May 2007 05:07:44 -0300, [EMAIL PROTECTED] <[EMAIL PROTECTED]> escribió: > the simplest way to launch the user's standard mail client from a > Python program is by creating a mailto: URL and launching the > webbrowser: > But this method is limited: you cannot specify a file to be atta

Re: invoke user's standard mail client

2007-05-04 Thread Cameron Laird
In article <[EMAIL PROTECTED]>, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: >Hello, > >the simplest way to launch the user's standard mail client from a >Python program is by creating a mailto: URL and launching the >webbrowser: > >def mailto_url(to=None,subject=None,body=None,cc=None): >""" >

Re: invoke user's standard mail client

2007-05-04 Thread Tim Golden
[EMAIL PROTECTED] wrote: > the simplest way to launch the user's standard mail client from a > Python program is by creating a mailto: URL and launching the > webbrowser: [... snip code ...] > But this method is limited: you cannot specify a file to be attached > to the mail. And I guess that the

invoke user's standard mail client

2007-05-04 Thread [EMAIL PROTECTED]
Hello, the simplest way to launch the user's standard mail client from a Python program is by creating a mailto: URL and launching the webbrowser: def mailto_url(to=None,subject=None,body=None,cc=None): """ encodes the content as a mailto link as described on http://www.faqs.org/rfcs/