PHP Classes

Not send !

Recommend this page to a friend!

      PHP Send Mail Class  >  All threads  >  Not send !  >  (Un) Subscribe thread alerts  
Subject:Not send !
Summary:THank's for share it's, but i have problems
Messages:3
Author:BratSadLove
Date:2015-02-16 05:37:47
 

  1. Not send !   Reply   Report abuse  
Picture of BratSadLove BratSadLove - 2015-02-16 05:37:47
Hi !

THank's for share it's, but i have problems

I config:

$sendmail->UseSMTPServer = true; //If you use smtp sert set true, or local php mail function set false
$sendmail->SMTPServer = "smtp.gmail.com";
$sendmail->SMTPPort = "465";
$sendmail->SMTPAuthUser = "[email protected]";
$sendmail->SMTPAuthPasswd = "password";

$sendmail->charset = 'utf-8';//ecu-kr :korean, iso-2022-jp : japaneses
$sendmail->Subject ("String Subject");

$sendmail->ReplyTo ("String Username<mailAccount@domain>");

$sendmail->From ("String Username<mailAccount@domain>");

$sendmail->To (preg_split("/[;,]+/", "[email protected]"));

//$sendmail->Cc (preg_split("/[;,]+/", "cc@domain"));
//$sendmail->Bcc (preg_split("/[;,]+/", "bcc@domain"));

$sendmail->Priority (3);


And i truy it but i can't receive email.

Please help me. THank's


  2. Re: Not send !   Reply   Report abuse  
Picture of YoungHyeong Ryu YoungHyeong Ryu - 2015-02-16 06:51:10 - In reply to message 1 from BratSadLove
My script has soem error on constructor of SendMail Class.

This class was updated. Pls check again



-----

line 44
contructor must be "function SendMail ()"...

  3. Re: Not send !   Reply   Report abuse  
Picture of BratSadLove BratSadLove - 2015-02-16 09:46:52 - In reply to message 2 from YoungHyeong Ryu
THank's