Anyone know how to send mail using cdont object? I only found scripts like the following:
<SCRIPT LANGUAGE="PHP">
$cdo = new COM("CDONTS.NewMail");
$cdo->From = "mukulsabharwal@yahoo.com";
$cdo->To = "mukulsabharwal@yahoo.com";
$cdo->Subject = "checking";
$cdo->Body = "this is a test";
$cdo->Send();
$cdo->Close();
</SCRIPT>
I dont think they works though.