Resend Mail Deliverable

API Type

Web Services

Description

Resends the mail deliverable with a specified mail ID.

Syntax

public virtual void ResendMailDeliverable(string mailID)

Parameters

Name Description

mailID

Definition:
Specifies the unique ID for an email notification.
Type
string
Allowed Values:
A valid email notification ID.

Output

None.

Example

//Sample for using resendMailDeliverable
IWFWorkflowService svc = GetWorkflowService();
string mailID = … // for example,
"149C3974240F47D3B28EB6D4A3CDCD3F"

try
	{
    svc.ResendMailDeliverable(mailID);
	}

catch (Exception ex)
	{
    Console.WriteLine("Failed! " + ShUtil.GetSoapMessage(ex));
	}

Supported Versions

3.2.0.4 and higher