GetErrorMsgParam method: MCFEmail class
Syntax
GetErrorMsgParam(&index)
Description
Use this method to return each of the substitution strings used in the error message.
Parameters
| Parameter | Description |
|---|---|
|
&index |
Specifies which substitution string to return from the array of substitution parameters. |
Returns
A string containing the substitution parameter.
Example
Local PT_MCF_MAIL:MCFOutboundEmail &email = create PT_MCF_MAIL:MCFOutboundEmail();
For &index = 1 To &email.ErrorMsgParamsCount
Local String &trace = "Param" | &index | ": '" | &email.GetErrorMsgParam⇒
(&index) | "'";
End-For;
Related Topics