Methods / Methods for Notifications |
Name | Type | Description |
---|---|---|
mID | string | A string that contains the unique ID for an email notification. |
//Sample for using resendMailDeliverable IWFWorkflowService svc = GetWorkflowService(); string emailNotificationID = … // for example, "149C3974240F47D3B28EB6D4A3CDCD3F" try { svc.ResendMailDeliverable(emailNotificationID); } catch (Exception ex) { Console.WriteLine("Failed! " + ShUtil.GetSoapMessage(ex)); }