Hi
I have a problem with send email from sharepoint. When i create a many task with visual studio
private void CreateTask_MethodInvoking(object sender, EventArgs e)
{
CreateTask.TaskId= Guid.NewGuid();
CreateTask.TaskProperties.AssignedTo="somecompany\user1"
CreateTask.TaskProperties.DueDate= DateTime.Now.AddDays(7);
CreateTask.TaskProperties.Title = "NEW TASK"
CreateTask.TaskProperties.SendEmailNotification= true
}
I have a problem with send email from sharepoint. When i create a many task with visual studio
in the short term E-mails are sent every 5 minutes.
I would like to e-mails sent of Sharepouint out every 1minutes. Its is posible to change some settings Sharepoint to do this?
This is my create task method:
I would like to e-mails sent of Sharepouint out every 1minutes. Its is posible to change some settings Sharepoint to do this?
This is my create task method:
private void CreateTask_MethodInvoking(object sender, EventArgs e)
{
CreateTask.TaskId= Guid.NewGuid();
CreateTask.TaskProperties.AssignedTo="somecompany\user1"
CreateTask.TaskProperties.DueDate= DateTime.Now.AddDays(7);
CreateTask.TaskProperties.Title = "NEW TASK"
CreateTask.TaskProperties.SendEmailNotification= true
}