Re: [python-win32] PySBinaryArray?? / Making sure messages show up in 'Sent Mail'

2013-06-09 Thread Aubin LaBrosse
never to expect or assume anything as far as Windows is concerned. -a From: python-win32 [mailto:python-win32-bounces+aubinl=netpolarity@python.org] On Behalf Of Aubin LaBrosse Sent: Thursday, June 06, 2013 12:36 PM To: Tim Roberts; Python-Win32 List Subject: Re: [python-win32] PySBina

Re: [python-win32] PySBinaryArray??

2013-06-06 Thread Aubin LaBrosse
] #1 is MESSAGE_MOVE according to msdn docs but i don't feel like figuring out if it has a symbolic constant or not... outboxfolder.CopyMessages([msg_eid], None, destFolder, 0, None, 1) ____ From: Tim Roberts [mailto:t...@probo.com] Sent: We

Re: [python-win32] PySBinaryArray??

2013-06-06 Thread Aubin LaBrosse
It is, indeed. Shows up in my inbox just fine -Original Message- From: python-win32 [mailto:python-win32-bounces+aubinl=netpolarity@python.org] On Behalf Of Tim Roberts Sent: Thursday, June 06, 2013 3:27 PM To: Python-Win32 List Subject: Re: [python-win32] PySBinaryArray

Re: [python-win32] PySBinaryArray??

2013-06-06 Thread Tim Roberts
Aubin LaBrosse wrote: > > > I was able to test that clearing the read flag and setting delete > after submit didn’t result in the email ending up in sent items. When > delete after submit is set it does however at least get removed from > the outbox. > Is the message actually being sent? --

Re: [python-win32] PySBinaryArray??

2013-06-05 Thread Aubin LaBrosse
t: Re: [python-win32] PySBinaryArray?? Aubin LaBrosse wrote: Mail server is exchange Last calls I made are: outboxfolder.SaveChanges(0) message.SubmitMessage(0) outlook is 100% online, yes for whatever reason when I send programmatically in this way I never see it move to sent items - it just

Re: [python-win32] PySBinaryArray??

2013-06-05 Thread Tim Roberts
Aubin LaBrosse wrote: > > > > Mail server is exchange > > Last calls I made are: > > > > outboxfolder.SaveChanges(0) > > message.SubmitMessage(0) > > > > outlook is 100% online, yes > > > > for whatever reason when I send programmatically in this way I never > see it move to sent items – it

Re: [python-win32] PySBinaryArray??

2013-06-05 Thread Aubin LaBrosse
k at 10pm last night. LOL -a From: Tim Roberts [mailto:t...@probo.com] Sent: Wednesday, June 05, 2013 9:54 AM To: Aubin LaBrosse Cc: python-win32@python.org Subject: Re: [python-win32] PySBinaryArray?? Aubin LaBrosse wrote: I'm new to pywin32 and have bee

Re: [python-win32] PySBinaryArray??

2013-06-05 Thread Tim Roberts
Aubin LaBrosse wrote: > > > I’m new to pywin32 and have been able to use it quite sufficiently > with the help of the internet and some (rather rudimentary, I admit) > knowledge of the windows api. I’ve been able to do some quite clever > things with HTML on the windows clipboard and the Extende

Re: [python-win32] PySBinaryArray??

2013-06-04 Thread Mark Hammond
It's just a list/sequence of strings (in py2k) or bytes (in py3k). In this context, IIRC, it's just the entryids of the messages to move... HTH, Mark On 5/06/2013 2:16 PM, Aubin LaBrosse wrote: Hello, List, I’m new to pywin32 and have been able to use it quite sufficiently with the help of

[python-win32] PySBinaryArray??

2013-06-04 Thread Aubin LaBrosse
Hello, List, I'm new to pywin32 and have been able to use it quite sufficiently with the help of the internet and some (rather rudimentary, I admit) knowledge of the windows api. I've been able to do some quite clever things with HTML on the windows clipboard and the Extended MAPI support. Ho