PC Review


Reply
Thread Tools Rating: Thread Rating: 1 votes, 1.00 average.

Default Subject

 
 
enquirer2
Guest
Posts: n/a
 
      6th Nov 2008
I send an exported file as an attachment for a supplier order. The
email requires the message body to be completely blank, and the
subject to contain the same text string for all orders. ie
email address = (E-Mail Removed)
subject = Acj_on-BjK

What I wish to set, is that for every email to (E-Mail Removed),
the subject field autofills with Acj_on-BjK and my signature isn't
included in message body (I've set to include signature for all
messages).

Is this possible in OfficeOutlook 2007?

thanks enquirer2
 
Reply With Quote
 
 
 
 
Michael Bauer [MVP - Outlook]
Guest
Posts: n/a
 
      6th Nov 2008


If you want to keep the setting to include the sig for all of the messages,
the only option I could think of is deleting the body afterwards by some VBA
code.

--
Best regards
Michael Bauer - MVP Outlook

: Outlook Categories? Category Manager Is Your Tool
: VBOffice Reporter for Data Analysis & Reporting
: <http://www.vboffice.net/product.html?pub=6&lang=en>


Am Thu, 6 Nov 2008 04:36:41 -0800 (PST) schrieb enquirer2:

> I send an exported file as an attachment for a supplier order. The
> email requires the message body to be completely blank, and the
> subject to contain the same text string for all orders. ie
> email address = (E-Mail Removed)
> subject = Acj_on-BjK
>
> What I wish to set, is that for every email to (E-Mail Removed),
> the subject field autofills with Acj_on-BjK and my signature isn't
> included in message body (I've set to include signature for all
> messages).
>
> Is this possible in OfficeOutlook 2007?
>
> thanks enquirer2

 
Reply With Quote
 
enquirer2
Guest
Posts: n/a
 
      7th Nov 2008
I can easily delete the signature for each order, it's the autofill of
subject field that I would like to achieve, because it is difficult to
remember, (Acj_on-BjK ).
On Nov 6, 9:30*pm, "Michael Bauer [MVP - Outlook]" <m...@mvps.org>
wrote:
> If you want to keep the setting to include the sig for all of the messages,
> the only option I could think of is deleting the body afterwards by some VBA
> code.
>
> --
> Best regards
> Michael Bauer - MVP Outlook
>
> * : Outlook Categories? Category Manager Is Your Tool
> * : VBOffice Reporter for Data Analysis & Reporting
> * : <http://www.vboffice.net/product.html?pub=6&lang=en>
>
> Am Thu, 6 Nov 2008 04:36:41 -0800 (PST) schrieb enquirer2:
>
>
>
> > I send an exported file as an attachment for a supplier order. *The
> > email requires the message body to be completely blank, and the
> > subject to contain the same text string for all orders. ie
> > email address = suppl...@wwwsite.com
> > subject = Acj_on-BjK

>
> > What I wish to set, is that for every email to suppl...@wwwsite.com,
> > the subject field autofills with Acj_on-BjK and my signature isn't
> > included in message body (I've set to include signature for all
> > messages).

>
> > Is this possible in OfficeOutlook 2007?

>
> > thanks enquirer2- Hide quoted text -

>
> - Show quoted text -


 
Reply With Quote
 
Michael Bauer [MVP - Outlook]
Guest
Posts: n/a
 
      15th Nov 2008

I'm sorry, I had overseen your reply.

For the subject you can use a customized formular. Click Tools/Forms/Design
a Form. Pre-fill the subject, then click Publish/Publish Form As... Under
Lookin select 'Personal Forms Library'. Enter a form name, e.g.
'Order_Form'. Then close the form, choose not to save changes.

Now you can call the form via New/Choose Form/personal Forms Library.

With VBA you can call the new form even easier:

Public Sub CallOrderForm()
Dim Folder as Outlook.Mapifolder
Dim Mail as Outlook.MailItem
set Folder=Application.Session.GetDefaultFolder(olFolderDrafts)
Set Mail=Folder.Items.Add("IPM.Note.Order_Form")
Mail.Display
End sub

Customize your toolbar, and drag a button for calling the macro onto it.

--
Best regards
Michael Bauer - MVP Outlook

: Outlook Categories? Category Manager Is Your Tool
: VBOffice Reporter for Data Analysis & Reporting
: <http://www.vboffice.net/product.html?pub=6&lang=en>



Am Thu, 6 Nov 2008 23:50:56 -0800 (PST) schrieb enquirer2:

> I can easily delete the signature for each order, it's the autofill of
> subject field that I would like to achieve, because it is difficult to
> remember, (Acj_on-BjK ).
> On Nov 6, 9:30*pm, "Michael Bauer [MVP - Outlook]" <m...@mvps.org>
> wrote:
>> If you want to keep the setting to include the sig for all of the

messages,
>> the only option I could think of is deleting the body afterwards by some

VBA
>> code.
>>
>> --
>> Best regards
>> Michael Bauer - MVP Outlook
>>
>> * : Outlook Categories? Category Manager Is Your Tool
>> * : VBOffice Reporter for Data Analysis & Reporting
>> * : <http://www.vboffice.net/product.html?pub=6&lang=en>
>>
>> Am Thu, 6 Nov 2008 04:36:41 -0800 (PST) schrieb enquirer2:
>>
>>
>>
>>> I send an exported file as an attachment for a supplier order. *The
>>> email requires the message body to be completely blank, and the
>>> subject to contain the same text string for all orders. ie
>>> email address = suppl...@wwwsite.com
>>> subject = Acj_on-BjK

>>
>>> What I wish to set, is that for every email to suppl...@wwwsite.com,
>>> the subject field autofills with Acj_on-BjK and my signature isn't
>>> included in message body (I've set to include signature for all
>>> messages).

>>
>>> Is this possible in OfficeOutlook 2007?

>>
>>> thanks enquirer2- Hide quoted text -

>>
>> - Show quoted text -

 
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
Can I add a default Subject to my signature file? =?Utf-8?B?QWFyb25fSQ==?= Microsoft Outlook Form Programming 0 23rd Feb 2006 12:11 AM
Default Subject =?Utf-8?B?SnVsaWFuIEZvcm5pc3M=?= Microsoft Outlook Discussion 0 6th Oct 2005 05:30 PM
Can I set a default subject for all outlook messages? =?Utf-8?B?TWVsYW5pZQ==?= Microsoft Outlook Discussion 1 18th Jan 2005 05:26 AM
How can I set a default Subject line? =?Utf-8?B?VG9tIEEtRA==?= Microsoft Outlook Discussion 1 12th Nov 2004 12:24 AM
default subject line kari Microsoft Outlook 3 13th May 2004 04:59 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 10:42 AM.