예제 #1
0
파일: stocks.php 프로젝트: ROCKY-SAM/IOC
 public function emailSupplier()
 {
     $to = $_POST['email'];
     $subject = $_POST['subject'];
     $txt = $_POST['message'];
     $txt = wordwrap($txt, 70);
     require 'models/Stocks_model.php';
     $model = new Stocks_model();
     $mailalert = $model->SendMail($to, $txt);
 }