GetReplyText (Email function): Difference between revisions

From m204wiki
Jump to navigation Jump to search
mNo edit summary
Line 5: Line 5:
===Syntax terms===
===Syntax terms===
<table class="syntaxTable">
<table class="syntaxTable">
<tr><th>%text</th>
<tr><th>%string</th>
<td>A string or longstring variable to contain the
<td>A string or longstring variable to contain the server response.
server response.
</td></tr>
</td></tr>
<tr><th>%email</th>
<tr><th>email</th>
<td>A previously declared Email object.
<td>A previously declared <var>Email</var> object.
   
   
</td></tr></table>
</td></tr></table>
==Usage notes==
==Usage notes==
<ul>
<ul>

Revision as of 22:19, 22 February 2012

Retrieve the last response (Email class)


Syntax

%string = email:GetReplyText

Syntax terms

%string A string or longstring variable to contain the server response.
email A previously declared Email object.

Usage notes

  • If the Mail method has not yet been invoked for email (the method object), GetReplyText returns the null string.
  • GetReplyCode returns the numeric value associated with the message text.

See also