Tell me more ×
SharePoint Stack Exchange is a question and answer site for SharePoint enthusiasts. It's 100% free, no registration required.

I want to be able to send an email out from my VS workflow with the url of the task. In my task method invoking I have the following code:

private void InformCust_MethodInvoking(object sender, EventArgs e)
{
    Inform_TaskId1 = Guid.NewGuid();
    Inform_TaskProperties1.Title = "cooking time" + workflowProperties.Item.Title;
    Inform_TaskProperties1.Description = "Inform customer  - ";

    Inform_TaskProperties1.ExtendedProperties["ItemId"] = workflowProperties.Item.ID;
    Inform_TaskProperties1.ExtendedProperties["ItemListId"] = workflowProperties.Item.ParentList.ID;
}
share|improve this question
Hi can anyone help with this pls? – Raj Chahal Jun 16 '12 at 15:17

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.