void OnSendEmailResult()(inTicket, inResult, inError)
Description
This callback is used when checking for a response from SendEmail, click here to learn more
Parameters
The following is a list of parameters the functions receives
| Parameter | Type | Description |
|---|---|---|
| inTicket | string | A unique Identifier to the call made |
| inResult | string | The response received from the SendEmail |
| inIsError | bool | Returns true if returns an error |
Return Type
void
Example
Prompt the response of the SendEmail function
function OnSendEmailResult(inTicket, inResult, inError)
{
Prompt("SendEmail Response: " + inResult);
}
Comments
Please sign in to leave a comment.