%PDF-1.5 % ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµù Õ5sLOšuY
Server IP : 122.155.17.190 / Your IP : 3.144.35.81 Web Server : Apache/2 System : Linux cat17190.thaihostserver.com 5.10.0-21-amd64 #1 SMP Debian 5.10.162-1 (2023-01-21) x86_64 User : bungkla ( 1054) PHP Version : 5.6.40 Disable Function : exec,system,passthru,shell_exec,proc_close,proc_open,dl,popen,show_source,posix_kill,posix_mkfifo,posix_getpwuid,posix_setpgid,posix_setsid,posix_setuid,posix_setgid,posix_seteuid,posix_setegid,posix_uname MySQL : ON | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /home/bungkla/domains/bungkla.go.th/private_html/contacts/ |
Upload File : |
<?php class sendMail{ private $receive = array(); private $cc = array(); private $bcc = array(); private $sender = ''; private $senderName = ''; private $subject = ''; private $message = ''; private $setReply = true; private $whereReply = ''; private $readRecipt = true; private $whereRecipt = ''; private $setheader = "MIME-Version: 1.0 \r\n"; function __construct($receive, $sender, $subject, $message, $cc = array(), $bcc = array(), $senderName = '', $whereRecipt = '', $readRecipt = false, $whereReply = '' , $setReply = false){ $this->receive = $receive; $this->cc = $cc; $this->bcc = $bcc; $this->sender = $sender; $this->senderName = $senderName; $this->subject = $subject; $this->message = $message; $this->setReply = $setReply; $this->whereReply = $whereReply; $this->readRecipt = $readRecipt; $this->whereRecipt = $whereRecipt; } function genrateHeader(){ $this->setheader .= 'Content-type: text/html; charset=utf-8' . "\r\n"; $this->setheader .= 'From: '.$this->senderName.' <'.$this->sender.'>' . "\r\n"; $this->setheader .= $this->genrateHeaderStr($this->receive, 'To'); if(is_array($this->cc) && count($this->cc) > 0){ $this->setheader .= $this->genrateHeaderStr($this->cc, 'Cc'); }if(is_array($this->bcc) && count($this->bcc) > 0){ $this->setheader .= $this->genrateHeaderStr($this->bcc, 'Bcc'); } if(is_array($this->whereReply) && ($this->setReply == true) && (count($this->whereReply) > 0)){ $this->setheader .= $this->genrateHeaderStr($this->whereReply, 'Reply-To'); } if(is_array($this->whereRecipt) && ($this->readRecipt == true) && (count($this->whereRecipt) > 0)){ $this->setheader .= $this->genrateHeaderStr($this->whereRecipt, 'Disposition-Notification-To'); } return $this->setheader; } public function sendEmail(){ $mailHeader = $this->genrateHeader(); if(mail($this->genrateHeaderStr($this->receive), $this->subject, $this->message, $mailHeader)){ echo "Mail Send Successfully."; }else{ echo "Sorry! Unable to send mail."; } } function genrateHeaderStr($whom,$param =''){ if($param == ''){ if(count($whom) > 0){ $i = 0; foreach($whom as $rVal){ $i++; if($i == count($whom)){ $returnHeader .= strtolower($rVal['email']); }else{ $returnHeader .= strtolower($rVal['email']).', '; } } } }else{ $returnHeader .= $param.': '; if(count($whom) > 0){ $i = 0; foreach($whom as $rVal){ $i++; if($i == count($whom)){ $returnHeader .= ucwords($rVal['name']).' <'.strtolower($rVal['email']).'>'. "\r\n" ; }else{ $returnHeader .= ucwords($rVal['name']).' <'.strtolower($rVal['email']).'>, '; } } } } return $returnHeader; } function __destruct(){ } } ?>