PC Review


Reply
Thread Tools Rate Thread

Create Task from Email message

 
 
mandrews@compucom.com
Guest
Posts: n/a
 
      11th Nov 2004
Can I create a task automatically from an incomming email
message using the rules wizard?
 
Reply With Quote
 
 
 
 
Michael Bauer
Guest
Posts: n/a
 
      16th Nov 2004
Unfortunatly you cannot, but you could do that with your own VBA code.

--
Viele Grüße
Michael Bauer


"(E-Mail Removed)" <(E-Mail Removed)> wrote in
message news:5fd101c4c82e$7a0930d0$(E-Mail Removed)...
> Can I create a task automatically from an incomming email
> message using the rules wizard?


 
Reply With Quote
 
=?Utf-8?B?RW1haWwgdG8gVGFzaw==?=
Guest
Posts: n/a
 
      18th Nov 2004
Is this code difficult code. I am not familar with writting VBA code so is it
possible to have the you write this code for me?

"Michael Bauer" wrote:

> Unfortunatly you cannot, but you could do that with your own VBA code.
>
> --
> Viele Grüße
> Michael Bauer
>
>
> "(E-Mail Removed)" <(E-Mail Removed)> wrote in
> message news:5fd101c4c82e$7a0930d0$(E-Mail Removed)...
> > Can I create a task automatically from an incomming email
> > message using the rules wizard?

>
>

 
Reply With Quote
 
Michael Bauer
Guest
Posts: n/a
 
      18th Nov 2004
Here is a little sample that calls a function each time a new e-mail is
coming in (there may be expectings). The method "CreateTaskFromMail" is
almost still empty. What kind of data do you like to use for the task?

'<DieseOutlookSitzung>
Private WithEvents m_oItems As Outlook.Items

Private Sub Application_Startup()
Set m_oItems =
Application.Session.GetDefaultFolder(olFolderInbox).Items
End Sub

Private Sub m_oItems_ItemAdd(ByVal Item As Object)
If TypeOf Item Is Outlook.MailItem Then
CreateTaskFromMail Item
End If
End Sub

Public Sub CreateTaskFromMail(oMail As Outlook.MailItem)
Dim oTask As Outlook.TaskItem

Set oTask = Application.CreateItem(olTaskItem)
With oTask
.Subject = oMail.Subject
.Save
End With
End Sub
'</DieseOutlookSitzung>


--
Viele Grüße
Michael Bauer


"Email to Task" <Email to (E-Mail Removed)> wrote in
message news:BEA206AE-C021-4A4A-A096-(E-Mail Removed)...
> Is this code difficult code. I am not familar with writting VBA code

so is it
> possible to have the you write this code for me?
>
> "Michael Bauer" wrote:
>
> > Unfortunatly you cannot, but you could do that with your own VBA

code.
> >
> > --
> > Viele Grüße
> > Michael Bauer
> >
> >
> > "(E-Mail Removed)" <(E-Mail Removed)> wrote

in
> > message news:5fd101c4c82e$7a0930d0$(E-Mail Removed)...
> > > Can I create a task automatically from an incomming email
> > > message using the rules wizard?

> >
> >


 
Reply With Quote
 
=?Utf-8?B?Q3JlYXRlIFRhc2sgZnJvbSBFbWFpbCBtZXNzYWdl
Guest
Posts: n/a
 
      29th Nov 2004
This a call center and some problem are escalated because agents are not
available. I would like to take the subject line a of a particular message
from a specific mailbox (TM-099-PSST Escalations) and create the Task. I will
try to write this from the sample you sent. If you can think of anything else
please let me know.

"Michael Bauer" wrote:

> Here is a little sample that calls a function each time a new e-mail is
> coming in (there may be expectings). The method "CreateTaskFromMail" is
> almost still empty. What kind of data do you like to use for the task?
>
> '<DieseOutlookSitzung>
> Private WithEvents m_oItems As Outlook.Items
>
> Private Sub Application_Startup()
> Set m_oItems =
> Application.Session.GetDefaultFolder(olFolderInbox).Items
> End Sub
>
> Private Sub m_oItems_ItemAdd(ByVal Item As Object)
> If TypeOf Item Is Outlook.MailItem Then
> CreateTaskFromMail Item
> End If
> End Sub
>
> Public Sub CreateTaskFromMail(oMail As Outlook.MailItem)
> Dim oTask As Outlook.TaskItem
>
> Set oTask = Application.CreateItem(olTaskItem)
> With oTask
> .Subject = oMail.Subject
> .Save
> End With
> End Sub
> '</DieseOutlookSitzung>
>
>
> --
> Viele Grüße
> Michael Bauer
>
>
> "Email to Task" <Email to (E-Mail Removed)> wrote in
> message news:BEA206AE-C021-4A4A-A096-(E-Mail Removed)...
> > Is this code difficult code. I am not familar with writting VBA code

> so is it
> > possible to have the you write this code for me?
> >
> > "Michael Bauer" wrote:
> >
> > > Unfortunatly you cannot, but you could do that with your own VBA

> code.
> > >
> > > --
> > > Viele Grüße
> > > Michael Bauer
> > >
> > >
> > > "(E-Mail Removed)" <(E-Mail Removed)> wrote

> in
> > > message news:5fd101c4c82e$7a0930d0$(E-Mail Removed)...
> > > > Can I create a task automatically from an incomming email
> > > > message using the rules wizard?
> > >
> > >

>
>

 
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
create rule to move or copy email message to task list (2003) Rick Microsoft Outlook Discussion 1 18th Feb 2009 08:46 PM
create rule to move or copy email message to task list (2003) Rick Microsoft Outlook Discussion 0 9th Feb 2009 04:53 AM
How can I easily create a task from an email message? ccg52 Microsoft Outlook Discussion 1 14th Nov 2008 01:41 PM
Create a New Appointment or Task from an Email Message =?Utf-8?B?U3RldmVNIC0gR1NUQw==?= Microsoft Outlook Discussion 2 11th Dec 2005 07:30 PM
Dropping email on task to create task from email Keith Caravelli Microsoft Outlook Discussion 2 19th Jan 2005 07:13 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 07:05 PM.