(misc)
boolean o2mail_send(string $from, string $to, string $cc, string $bcc, string $subject, string $text, boolean $as_html, string $attach)
Sends a mail. Returns TRUE on success.
TO, CC, BCC and Attachments, if multiple, can be provided in two ways:
1. as array of strings in the form:
array(1 => "first_item",
2 => "second_item",
...
n => "nth_item");
keys are ignored
2. as "," or ";" separated string in the form:
"first_item,second_item,...,nth_item"