%PDF- %PDF-
Direktori : /var/www/html/buggydubrovnik.com/prodaja/ |
Current File : //var/www/html/buggydubrovnik.com/prodaja/SMTPClass.php |
<?php class SMTPClient { function SMTPClient ($SmtpServer, $SmtpPort, $SmtpUser, $SmtpPass, $from, $to, $subject, $body) { $this->SmtpServer = $SmtpServer; $this->SmtpUser = base64_encode ($SmtpUser); $this->SmtpPass = base64_encode ($SmtpPass); $this->from = "info@adriatic-explore.com"; $this->to = $to; $this->subject = $subject; $this->body = $body; if ($SmtpPort == "") { $this->PortSMTP = 25; } else { $this->PortSMTP = $SmtpPort; } } function SendMail () { if ($SMTPIN = fsockopen ($this->SmtpServer, $this->PortSMTP)) { fputs ($SMTPIN, "HELO ".$HTTP_HOST."\r\n"); $talk["hello"] = fgets ( $SMTPIN, 1024 ); fputs ($SMTPIN, "MAIL FROM: <".$this->from.">\r\n"); $talk["From"] = fgets ( $SMTPIN, 1024 ); fputs ($SMTPIN, "RCPT TO: <".$this->to.">\r\n"); $talk["To"] = fgets ($SMTPIN, 1024); fputs($SMTPIN, "DATA\r\n"); $talk["data"]=fgets( $SMTPIN,1024 ); fputs($SMTPIN, "Reply-To: ".$this->from."\r\nReturn-Path: Adriatic Explore <info@adriatic-explore.com>\r\nTo:".$this->to."\r\nFrom:Adriatic Explore<info@adriatic-explore.com>\r\nSubject:".$this->subject."\r\nOrganization: Adriatic Explore Ltd.\r\nContent-Type: text/plain\r\n\r\n\r\n".$this->body."\r\n"); $talk["send"]=fgets($SMTPIN,256); //CLOSE CONNECTION AND EXIT ... fputs ($SMTPIN, "QUIT\r\n"); fclose($SMTPIN); // } return $talk; } } ?>