<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>XPM3_MAIL->delto()</title>
<style>
body, pre {
font-family: Verdana;
font-size: 10pt;
}
</style>
</head>
<body bgcolor="#f1f3f5" topmargin="10" leftmargin="14">
<pre>
XPM3_MAIL -> <i>boolean</i> <b>delto</b> ( [ <i>string</i> address ] )
<hr>
Returns TRUE if has been successfully deleted, FALSE if not.
<i>string</i> address format are hide@address.com
Example:
<table border="0" bgcolor="white">
<tr><td>
<pre><code>
$m = new XPM3_MAIL;
$m->AddTo('hide@address.com');
// delete only "hide@address.com" mail address from "To"
$m->DelTo('hide@address.com');
// also, you can delete all "To" mail addresses
// attention here, you can not send an e-mail without have set "To" mail address
$m->DelTo();
</code></pre>
</td></tr>
</table>
<hr color="white">
[ <a style="color: blue; text-decoration: none" href="mailto:hide@address.com?subject=Comment XPM3_MAIL DelTo">Comments</a> ]
Last update: Friday, December 08, 2006
</pre>
</body>
</html>