Re: Outlook automation

2019-10-17 Thread Jan Bucek
Dne 17.10.2019 v 12:33 Ted Roche napsal(a): On Thu, Oct 17, 2019 at 2:22 AM AndyHC wrote: Anyone done it with Thunderbird? I don't think Thunderbird implements the COM interface, see here: http://codeverge.com/mozilla.dev.apps.thunderbird/thunderbird-automation/1102239 The mention of

Re: Outlook automation

2019-10-17 Thread Alan Bourke
On Thu, 17 Oct 2019, at 7:21 AM, AndyHC wrote: > Anyone done it with Thunderbird? > I would reckon that when it comes to automating Windows email clients via COM, Outlook is the only show in town. -- Alan Bourke alanpbourke (at) fastmail (dot) fm

Re: Outlook automation

2019-10-17 Thread Ted Roche
On Thu, Oct 17, 2019 at 2:22 AM AndyHC wrote: > Anyone done it with Thunderbird? > I don't think Thunderbird implements the COM interface, see here: http://codeverge.com/mozilla.dev.apps.thunderbird/thunderbird-automation/1102239 The mention of command-line options lead me here:

Re: Outlook automation

2019-10-17 Thread AndyHC
Anyone done it with Thunderbird? On 16-Oct-2019 6:28 PM, Alan Bourke wrote: This works for me in the Command Window: loOutlook = CreateObject("Outlook.Application") loMessage = loOutlook.CreateItem(0) loMessage.To = "some...@test.com" loMessage.Subject = "Message subject" loMessage.Body =

Re: Outlook automation

2019-10-16 Thread Alan Bourke
This works for me in the Command Window: loOutlook = CreateObject("Outlook.Application") loMessage = loOutlook.CreateItem(0) loMessage.To = "some...@test.com" loMessage.Subject = "Message subject" loMessage.Body = "message body" loMessage.Attachments.Add("myfile.pdf") loMessage.Display(.t.) It

RE: Outlook automation

2019-10-16 Thread Mark Dimmock
9 12:58 PM To: profoxt...@leafe.com Subject: Outlook automation We are creating invoices in PDF form and then emailing them via Outlook With OutMail .To = lcEmail .Subject = lcSubject .HTMLBody = Message .Attachments.Add(xinvoice) .Display .Send Endwith Our client wants to be able to add t

Outlook automation

2019-10-16 Thread wes.wil...@yahoo.com
We are creating invoices in PDF form and then emailing them via Outlook With OutMail .To = lcEmail .Subject = lcSubject .HTMLBody = Message .Attachments.Add(xinvoice) .Display .Send Endwith Our client wants to be able to add to the body of the email but Outlook will not stay up.  Just flashes

Outlook Automation with Templates

2014-01-07 Thread Christina Bull
Hi there, Does anyone have some quick VFP code to automate Outlook using an existing template? Template has a table in it and I'm wondering if it's possible to park some VFP variables in those tables. Thanks in advance, Christina --- StripMime Report -- processed MIME

Re: Outlook Automation - Solved by Craig Boyd

2013-08-20 Thread Jeff Johnson
http://www.sweetpotatosoftware.com/spsblog/2005/07/12/EmailAndVFPPart1bOutlook.aspx Here is another one of Craig's amazing procedures! This one builds the email and you can choose to display() which opens up the email in Outlook. Exactly what I was looking for. Thanks Craig if you're

Outlook Automation

2013-08-19 Thread Jeff Johnson
I have used the click yes things to keep Outlook from asking my VFP program to allow it for a number of minutes. I have a user that wants to automate Outlook but will not allow any such program. What I would like to do is build the email with an attachment and open up Outlook at the point

Re: Outlook Automation

2013-08-19 Thread Sytze de Boer
Hi Jeff I use a 3rd party to avoid that message popping up Google for Redemption.zip . On Tue, Aug 20, 2013 at 9:07 AM, Jeff Johnson j...@san-dc.com wrote: I have used the click yes things to keep Outlook from asking my VFP program to allow it for a number of minutes. I have a user that

Re: Outlook Automation

2013-08-19 Thread M Jarvis
On Mon, Aug 19, 2013 at 2:07 PM, Jeff Johnson j...@san-dc.com wrote: Any ideas? This might address your need exactly, but Outlook Redemption used to be one of the go-to techniques: http://www.dimastr.com/redemption/home.htm -- Matt Jarvis Eugene, Oregon USA

Re: Outlook Automation

2013-08-19 Thread Jeff Johnson
The problem is that the IT department will not allow Redemption to be installed. They want the user to control the sending of the email. I would like my application to fill out the email and open up Outlook ready to send. I am guessing that Redemption will not be needed for this.

Re: Outlook Automation

2013-08-19 Thread Sytze de Boer
Then I'm confused. You are using Click Yes. Redemption by-passes that process. That's all it does What you can do with Outlook is to send the message immediately, or wait for the user to explicitly click the Send/Receive button. Set it to the manual process. This way, your app will place the

RE: Outlook Automation

2013-08-19 Thread Tracy Pearson
Jeff Johnson wrote on 2013-08-19: The problem is that the IT department will not allow Redemption to be installed. They want the user to control the sending of the email. I would like my application to fill out the email and open up Outlook ready to send. I am guessing that Redemption

Re: Outlook Automation

2013-08-19 Thread Jeff Johnson
Sytze: Your second paragraph is exactly what I want. I've used the click yes for other customers but this one will not allow it. No SMTP, or click yes, just Outlook. So if I build the message using automation but don't send it, it will be in the outbox? Then is there a .show() or something

Re: Outlook Automation

2013-08-19 Thread Sytze de Boer
I've never considered that, but I guess you could RUN Outlook or simply prompt the user to open Outlook On Tue, Aug 20, 2013 at 11:27 AM, Jeff Johnson j...@san-dc.com wrote: Sytze: Your second paragraph is exactly what I want. I've used the click yes for other customers but this one will

RE: Outlook Automation - No wonder no one answered this question!

2012-03-26 Thread Richard Kaye
Hi Jeff, Care to share what you're doing with Outlook automation? I've had this request knocking around for a while to add events to a shared calendar and since it hasn't been a high priority, I've not put much thought into it. But maybe you have... vbg -- rk -Original Message- From

Re: Outlook Automation - No wonder no one answered this question!

2012-03-25 Thread Jeff Johnson
On 03/24/2012 09:45 AM, Jeff Johnson wrote: I am updating Outlook calendar events and everything is working except for one thing. ReminderMinutesBeforeStart. No matter what I have tried it still defaults to 15 minutes. I have tried converting the minutes to long, saving the entry and then

Outlook Automation

2012-03-24 Thread Jeff Johnson
I am updating Outlook calendar events and everything is working except for one thing. ReminderMinutesBeforeStart. No matter what I have tried it still defaults to 15 minutes. I have tried converting the minutes to long, saving the entry and then changing the minutes. I have tried setting

RE: VFP6: Outlook Automation

2008-08-12 Thread Allen
Blat does not do pop3 does it ? I thought it was smtp. Al -Original Message- Jack, much better to avoid POP3 anyway. Don't automate a client, just send the mail to an smtp server directly, using eg blat.dll. HTH Paul ___ Post Messages to:

RE: VFP6: Outlook Automation

2008-08-12 Thread Efren Pedroza
, this feature is only supported by registered version of ASPEMail control Regards -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Jack Skelley Sent: Monday, August 11, 2008 3:54 PM To: [EMAIL PROTECTED] Subject: VFP6: Outlook Automation Good Afternoon

Re: VFP6: Outlook Automation

2008-08-12 Thread Paul McNett
Allen wrote: Blat does not do pop3 does it ? I thought it was smtp. The content of Jack's question was *sending* mail. smtp is what is used for that. Paul ___ Post Messages to: ProFox@leafe.com Subscription Maintenance:

Re: VFP6: Outlook Automation

2008-08-12 Thread Jack Skelley
: Outlook Automation Good Afternoon All: I have made the switch from a POP3 mail server to our own MS Exchange system for company email. Now for the problem: Since Exchange is not configured as a POP3 server I am having trouble getting email to send from our scouting application written

Re: VFP6: Outlook Automation

2008-08-12 Thread Jack Skelley
Paul: Thanks for the suggestion. I will look at blat.dll ASAP. Regards, Jack Jack, much better to avoid POP3 anyway. Don't automate a client, just send the mail to an smtp server directly, using eg blat.dll. HTH Paul ___ Post Messages to:

Re: VFP6: Outlook Automation

2008-08-12 Thread Malcolm Greene
Jack, Consider using Blat and using a hosted SMTP mail service like Fastmail.fm (or similar hosted email service). Very low cost, low risk way to get a quality SMTP service. Malcolm ___ Post Messages to: ProFox@leafe.com Subscription Maintenance:

RE: VFP6: Outlook Automation

2008-08-12 Thread Allen
Why cant you set you SMTP server to work using IP address or something. It should work anyway if its set up. Not that exchange can be called easy to set up or even getting working for that matter :) Allen -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of

RE: VFP6: Outlook Automation

2008-08-12 Thread Efren Pedroza
: VFP6: Outlook Automation Why cant you set you SMTP server to work using IP address or something. It should work anyway if its set up. Not that exchange can be called easy to set up or even getting working for that matter :) Allen -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL

VFP6: Outlook Automation

2008-08-11 Thread Jack Skelley
' error messages and messages directly to me from our scouts were sent using Persits Software, Inc using ASPEmail. I have read the mail about Outlook Automation that was on discussed last week here and reviewed Ted Roche's website at http://www.tedroche.com/Present/2003/OutlookAutomation.html I have

RE: VFP6: Outlook Automation

2008-08-11 Thread Peter Hart
: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Jack Skelley Sent: 11 August 2008 22:01 To: profox@leafe.com Subject: VFP6: Outlook Automation Good Afternoon All: I have made the switch from a POP3 mail server to our own MS Exchange system for company email. Now for the problem: Since

Re: VFP6: Outlook Automation

2008-08-11 Thread Paul McNett
in VFP6. In the 'old days' error messages and messages directly to me from our scouts were sent using Persits Software, Inc using ASPEmail. I have read the mail about Outlook Automation that was on discussed last week here and reviewed Ted Roche's website at http://www.tedroche.com/Present

Outlook automation error - for info

2006-08-07 Thread Graham Brown (CompSYS)
Hi all I've been banging my head against a brick wall with an 8007007e ole error when trying to createobject(Outlook.Application) Couldn't see anything that might have affected anything other than the customer had recently moved from Norton Security 2005 to AVG. Turns out that the uninstall of

RE: Outlook automation error - for info

2006-08-07 Thread Rick Schummer
] [mailto:[EMAIL PROTECTED] On Behalf Of Graham Brown (CompSYS) Sent: Monday, August 07, 2006 11:45 AM To: [EMAIL PROTECTED] Subject: Outlook automation error - for info Hi all I've been banging my head against a brick wall with an 8007007e ole error when trying to createobject(Outlook.Application