PC Review


Reply
Thread Tools Rate Thread

is there a REAL Simple way to email from other apps?

 
 
=?Utf-8?B?YW1pYXJ0?=
Guest
Posts: n/a
 
      14th Nov 2005
I want to be able to email from any of my applications and not just OUTLOOK..
i.e. I have Corel Draw open and I click a button and it pulls up outlook with
the file I am working on attached ?
 
Reply With Quote
 
 
 
 
Alan
Guest
Posts: n/a
 
      15th Nov 2005
"amiart" <(E-Mail Removed)> wrote in message
news:4D71EC95-B814-4A4D-8161-(E-Mail Removed)
> I want to be able to email from any of my applications and not just
> OUTLOOK.. i.e. I have Corel Draw open and I click a button and it
> pulls up outlook with the file I am working on attached ?


Not sure about Corel, but office applications you can do this:

File - SendTo - Mail Receipient (as attachment) ?

HTH,

Alan.

--
The views expressed are my own, and not those of my employer or anyone
else associated with me.

My current valid email address is:

(E-Mail Removed)

This is valid as is. It is not munged, or altered at all.

It will be valid for AT LEAST one month from the date of this post.

If you are trying to contact me after that time,
it MAY still be valid, but may also have been
deactivated due to spam. If so, and you want
to contact me by email, try searching for a
more recent post by me to find my current
email address


 
Reply With Quote
 
Michael Bednarek
Guest
Posts: n/a
 
      15th Nov 2005
On Mon, 14 Nov 2005 14:24:55 -0800, amiart
<(E-Mail Removed)> wrote in
microsoft.public.outlook.program_vba:

>I want to be able to email from any of my applications and not just OUTLOOK..
>i.e. I have Corel Draw open and I click a button and it pulls up outlook with
>the file I am working on attached ?


That depends a) on the macro capabilities of the respective program, and
b) on the e-mail method - SMTP, POP, Exchange.

I believe Corel Draw, like WordPerfect, supports Visual Basic for
Applications (VBA), so sending e-mail is possible. The exact code
depends on b) and the methods and properties exposed to VBA by the
respective application.

--
Michael Bednarek http://mbednarek.com/ "POST NO BILLS"
 
Reply With Quote
 
=?Utf-8?B?YW1pYXJ0?=
Guest
Posts: n/a
 
      15th Nov 2005
ok.. let me clarify this some more.. I specifically want to be able to email
from
adobe illustrator it allows for custom scripts but does not have a "send to"
or "mail to " function and I don't know enough to write a script to have this
happen.. Any ideas?

"Michael Bednarek" wrote:

> On Mon, 14 Nov 2005 14:24:55 -0800, amiart
> <(E-Mail Removed)> wrote in
> microsoft.public.outlook.program_vba:
>
> >I want to be able to email from any of my applications and not just OUTLOOK..
> >i.e. I have Corel Draw open and I click a button and it pulls up outlook with
> >the file I am working on attached ?

>
> That depends a) on the macro capabilities of the respective program, and
> b) on the e-mail method - SMTP, POP, Exchange.
>
> I believe Corel Draw, like WordPerfect, supports Visual Basic for
> Applications (VBA), so sending e-mail is possible. The exact code
> depends on b) and the methods and properties exposed to VBA by the
> respective application.
>
> --
> Michael Bednarek http://mbednarek.com/ "POST NO BILLS"
>

 
Reply With Quote
 
Sue Mosher [MVP-Outlook]
Guest
Posts: n/a
 
      15th Nov 2005
According to what I've read in some search results, Illustrator running on Windows supports some flavor of Visual Basic, which means you can use the same syntax for creating and sending messages with Outlook that you'd use if you were writing code in Excel or Word or in VBScript, e.g.:

Set olApp = CreateObject("Outlook.Application")
Set myMsg = olApp.CreateItem(0)
With myMsg
.Subject = "the subject"
.To = "(E-Mail Removed)"
.Body = "the message body"
.Attachments.Add "c:\the_file.txt"
.Display
End With

If you're new to Outlook programming, these web pages should help you get started:

http://www.winnetmag.com/Articles/In...eID=21522&pg=1
http://www.outlookcode.com/d/vb.htm

--
Sue Mosher, Outlook MVP
Author of Configuring Microsoft Outlook 2003
http://www.turtleflock.com/olconfig/index.htm
and Microsoft Outlook Programming - Jumpstart for
Administrators, Power Users, and Developers
http://www.outlookcode.com/jumpstart.aspx


"amiart" <(E-Mail Removed)> wrote in message news:3A89EA12-2C0B-4C5D-BD7A-(E-Mail Removed)...
> ok.. let me clarify this some more.. I specifically want to be able to email
> from
> adobe illustrator it allows for custom scripts but does not have a "send to"
> or "mail to " function and I don't know enough to write a script to have this
> happen.. Any ideas?
>
> "Michael Bednarek" wrote:
>
>> On Mon, 14 Nov 2005 14:24:55 -0800, amiart
>> <(E-Mail Removed)> wrote in
>> microsoft.public.outlook.program_vba:
>>
>> >I want to be able to email from any of my applications and not just OUTLOOK..
>> >i.e. I have Corel Draw open and I click a button and it pulls up outlook with
>> >the file I am working on attached ?

>>
>> That depends a) on the macro capabilities of the respective program, and
>> b) on the e-mail method - SMTP, POP, Exchange.
>>
>> I believe Corel Draw, like WordPerfect, supports Visual Basic for
>> Applications (VBA), so sending e-mail is possible. The exact code
>> depends on b) and the methods and properties exposed to VBA by the
>> respective application.
>>
>> --
>> Michael Bednarek http://mbednarek.com/ "POST NO BILLS"
>>

 
Reply With Quote
 
David C. Holley
Guest
Posts: n/a
 
      15th Nov 2005
One question to ask is wether or not the amount of time that you're
spending on how to do this and subsequently getting it to work is really
worth it when you balance it against saving the file, opening Outlook
and attaching it manually. Keep in mind that there is also a HUGE
difference between *MUST HAVE's* and *NICE TO HAVE's*.

amiart wrote:
> ok.. let me clarify this some more.. I specifically want to be able to email
> from
> adobe illustrator it allows for custom scripts but does not have a "send to"
> or "mail to " function and I don't know enough to write a script to have this
> happen.. Any ideas?
>
> "Michael Bednarek" wrote:
>
>
>>On Mon, 14 Nov 2005 14:24:55 -0800, amiart
>><(E-Mail Removed)> wrote in
>>microsoft.public.outlook.program_vba:
>>
>>
>>>I want to be able to email from any of my applications and not just OUTLOOK..
>>>i.e. I have Corel Draw open and I click a button and it pulls up outlook with
>>>the file I am working on attached ?

>>
>>That depends a) on the macro capabilities of the respective program, and
>>b) on the e-mail method - SMTP, POP, Exchange.
>>
>>I believe Corel Draw, like WordPerfect, supports Visual Basic for
>>Applications (VBA), so sending e-mail is possible. The exact code
>>depends on b) and the methods and properties exposed to VBA by the
>>respective application.
>>
>>--
>>Michael Bednarek http://mbednarek.com/ "POST NO BILLS"
>>

 
Reply With Quote
 
=?Utf-8?B?YW1pYXJ0?=
Guest
Posts: n/a
 
      15th Nov 2005
me personally I send out approximately 30 to 40 files a day.. with artwork from
adobe Illustrator.. I have to open outlook start a new email, fish for the
file attach it address it and send it with high priority and print it out. I
believe it would be well worth the trouble.. I have NEVER done any Visual
Basic Scripting however this seems like a pretty straight forward thing ??
what do I do open the VBE and paste in some code snipits and then impliment
it via Illustrators scripts ???

"David C. Holley" wrote:

> One question to ask is wether or not the amount of time that you're
> spending on how to do this and subsequently getting it to work is really
> worth it when you balance it against saving the file, opening Outlook
> and attaching it manually. Keep in mind that there is also a HUGE
> difference between *MUST HAVE's* and *NICE TO HAVE's*.
>
> amiart wrote:
> > ok.. let me clarify this some more.. I specifically want to be able to email
> > from
> > adobe illustrator it allows for custom scripts but does not have a "send to"
> > or "mail to " function and I don't know enough to write a script to have this
> > happen.. Any ideas?
> >
> > "Michael Bednarek" wrote:
> >
> >
> >>On Mon, 14 Nov 2005 14:24:55 -0800, amiart
> >><(E-Mail Removed)> wrote in
> >>microsoft.public.outlook.program_vba:
> >>
> >>
> >>>I want to be able to email from any of my applications and not just OUTLOOK..
> >>>i.e. I have Corel Draw open and I click a button and it pulls up outlook with
> >>>the file I am working on attached ?
> >>
> >>That depends a) on the macro capabilities of the respective program, and
> >>b) on the e-mail method - SMTP, POP, Exchange.
> >>
> >>I believe Corel Draw, like WordPerfect, supports Visual Basic for
> >>Applications (VBA), so sending e-mail is possible. The exact code
> >>depends on b) and the methods and properties exposed to VBA by the
> >>respective application.
> >>
> >>--
> >>Michael Bednarek http://mbednarek.com/ "POST NO BILLS"
> >>

>

 
Reply With Quote
 
Sue Mosher [MVP-Outlook]
Guest
Posts: n/a
 
      15th Nov 2005
My understanding is that Illustrator may have its own scripting enviroment that will give you access to the key object you need -- the active document. I'd suggest you seek out an Illustrator forum and ask for "getting started" tips there.

--
Sue Mosher, Outlook MVP
Author of Configuring Microsoft Outlook 2003
http://www.turtleflock.com/olconfig/index.htm
and Microsoft Outlook Programming - Jumpstart for
Administrators, Power Users, and Developers
http://www.outlookcode.com/jumpstart.aspx


"amiart" <(E-Mail Removed)> wrote in message news:9EC5EF69-E00E-495E-9664-(E-Mail Removed)...
> me personally I send out approximately 30 to 40 files a day.. with artwork from
> adobe Illustrator.. I have to open outlook start a new email, fish for the
> file attach it address it and send it with high priority and print it out. I
> believe it would be well worth the trouble.. I have NEVER done any Visual
> Basic Scripting however this seems like a pretty straight forward thing ??
> what do I do open the VBE and paste in some code snipits and then impliment
> it via Illustrators scripts ???
>
> "David C. Holley" wrote:
>
>> One question to ask is wether or not the amount of time that you're
>> spending on how to do this and subsequently getting it to work is really
>> worth it when you balance it against saving the file, opening Outlook
>> and attaching it manually. Keep in mind that there is also a HUGE
>> difference between *MUST HAVE's* and *NICE TO HAVE's*.
>>
>> amiart wrote:
>> > ok.. let me clarify this some more.. I specifically want to be able to email
>> > from
>> > adobe illustrator it allows for custom scripts but does not have a "send to"
>> > or "mail to " function and I don't know enough to write a script to have this
>> > happen.. Any ideas?
>> >
>> > "Michael Bednarek" wrote:
>> >
>> >
>> >>On Mon, 14 Nov 2005 14:24:55 -0800, amiart
>> >><(E-Mail Removed)> wrote in
>> >>microsoft.public.outlook.program_vba:
>> >>
>> >>
>> >>>I want to be able to email from any of my applications and not just OUTLOOK..
>> >>>i.e. I have Corel Draw open and I click a button and it pulls up outlook with
>> >>>the file I am working on attached ?
>> >>
>> >>That depends a) on the macro capabilities of the respective program, and
>> >>b) on the e-mail method - SMTP, POP, Exchange.
>> >>
>> >>I believe Corel Draw, like WordPerfect, supports Visual Basic for
>> >>Applications (VBA), so sending e-mail is possible. The exact code
>> >>depends on b) and the methods and properties exposed to VBA by the
>> >>respective application.
>> >>
>> >>--
>> >>Michael Bednarek http://mbednarek.com/ "POST NO BILLS"
>> >>

>>

 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
International datetime comparisons in real-time web apps Savvoulidis Iordanis Microsoft ASP .NET 1 9th Jul 2009 08:52 PM
Re: I have a real simple one Jeff Boyce Microsoft Access VBA Modules 1 25th Jul 2008 09:34 PM
Simple installation of vb.net apps.... sam Microsoft VB .NET 4 8th Apr 2006 09:08 PM
What tool to use for Real Time Event Monitoring Apps? =?Utf-8?B?RGF2ZSBEZXNzZXg=?= Microsoft ASP .NET 2 10th May 2005 01:16 AM
Garbage collection and soft real-time apps =?Utf-8?B?T2N1bHVz?= Microsoft Dot NET 2 21st Dec 2004 05:47 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 02:41 PM.