GIF89a;
Direktori : /home/serb/public_html/livechat/php/service/ |
Current File : /home/serb/public_html/livechat/php/service/Mailer.php |
<?php class Mailer extends Service { public function sendMessage($from, $to, $subject, $body) { $headers = "From: $from\r\nReply-To: $from\r\nContent-Type: text/html; charset=UTF-8\r\n"; @mail($to, $subject, $body, $headers); } } ?>