CodeIgnitor e-kütüphane kullanarak PHP mail

0 Cevap php

Ben aşağıdaki gibi codeignitor e-posta library.My denetleyicisi kullanarak e-posta göndermek istiyorum;

  Class Users extends Controller
{
    function users()
    {
        parent::Controller();
        $this->load->library('email');
    }
    function testmail()
    {
        $this->email->to('ajith@toobler.com');
        $this->email->from('admin@gaishan.com');
            $this->email->subject('Email Cofirmation mail');
        $this->email->message('Email Cofirmation mail from Codeignitor');
        if($mail = $this->email->send())
            echo 1;
        else
            echo 0;
    }
}

Benim Email.php programı 0 (başarısız) döndürür yukarıdaki ../system/libraries. Posta Çalışmadan değildir. herhangi bir ek yapılandırma bir mail.Any yardım appreciable.thanks olacak göndermek gerekir var mı yerleştirildi

0 Cevap