slav.snitkovskiy
Member
- Outlook version
- Outlook 2010 32 bit
- Email Account
- Exchange Server
I am writing some script to automate some functions of Outlook.
I successfully allowed a specific incoming email to create a task.
What I am having trouble with is scripting that a recurring daily reminder be set until the task is completed.
this is what i have so far:
Sub ConvertMailtoTask(Item As Outlook.MailItem)
Dim objTask As Outlook.TaskItem
Set objTask = Application.CreateItem(olTaskItem)
With objTask
> subject = Item.subject
> StartDate = Item.ReceivedTime
> ReminderTime = Item.ReceivedTime
> ReminderSet = True
> Body = Item.Body
> Save
End With
Set objTask = Nothing
End Sub
Please Help
I successfully allowed a specific incoming email to create a task.
What I am having trouble with is scripting that a recurring daily reminder be set until the task is completed.
this is what i have so far:
Sub ConvertMailtoTask(Item As Outlook.MailItem)
Dim objTask As Outlook.TaskItem
Set objTask = Application.CreateItem(olTaskItem)
With objTask
> subject = Item.subject
> StartDate = Item.ReceivedTime
> ReminderTime = Item.ReceivedTime
> ReminderSet = True
> Body = Item.Body
> Save
End With
Set objTask = Nothing
End Sub
Please Help