 includes/cmsinit.inc
includes
properties
functions
|  send_mail
void send_mail(string & $mailer_message, string $message, boolean $html, string $subject, string $to, string $to_name, string $from, string $from_name)
contains the weblink of the block when the block is of type RSS/RDF Arguments - $mailer_message
returns info about the send mail or the error message
- $message
the message that you want to send
- $html [optional, default value = false]
send message as html (true) or text (false)
- $subject [optional, default value = _FEEDBACK]
the subject of the message
- $to [optional, default value = $adminmail]
emailaddress of person to send to
- $to_name [optional, default value = $sitename]
name of person to send to
- $from [optional, default value = $adminmail]
emailaddress of person who sends the message
- $from_name [optional, default value = $sitename]
name of person who sends the message
|