Welcome Guest, Not a member yet? Register   Sign In
Sending EMail From Code Igniter 2.0.1
#14

[eluser]InsiteFX[/eluser]
Email_test - Controller - application/controllers/email_test
Code:
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
/**
* Name Class Controller
*
* @package        CodeIgniter
* @subpackage    Controllers
* @category    Controllers
* @author        Raymond King aka:(InsiteFX).
* @copyright    Copyright (c) 2005 - 2011, Advanced Computer Systems, LLC.
* @license        http://www.learncodeigniter.com
* @link        http://www.learncodeigniter.com
* @since        Version 1.0.0
*/

class Email_test extends CI_Controller {

    // Class Variables.
    // --------------------------------------------------------------------


    // --------------------------------------------------------------------

    /**
     * __construct
     *
     * PHP 5+    Constructor
     *
     * Not need if not setting up parameters etc.
     *
     * @access    public
     * @return    void
     */
    public function __construct()
    {
        parent::__construct();
    }

    // --------------------------------------------------------------------

    /**
     * index()
     *
     * Default Controller index method.
     *
     * @access    public
     * @return    void
     */
    public function index()
    {

        $this->load->library('email');

        $this->email->from('[email protected]', 'Your Name');
        $this->email->to('[email protected]');
        $this->email->cc('[email protected]');
        $this->email->bcc('[email protected]');

        $this->email->subject('Email Test');
        $this->email->message('Testing the email class.');

        $this->email->send();

        // Load this controllers Data and View.
        $this->load->view('email_message');
    }

}

// ------------------------------------------------------------------------
/* End of file email_test.php */
/* Location: ./application/controllers/email_test.php */

InsiteFX


Messages In This Thread
Sending EMail From Code Igniter 2.0.1 - by El Forum - 03-30-2011, 11:21 PM
Sending EMail From Code Igniter 2.0.1 - by El Forum - 03-31-2011, 03:12 AM
Sending EMail From Code Igniter 2.0.1 - by El Forum - 03-31-2011, 10:02 PM
Sending EMail From Code Igniter 2.0.1 - by El Forum - 04-01-2011, 04:51 AM
Sending EMail From Code Igniter 2.0.1 - by El Forum - 04-01-2011, 05:31 AM
Sending EMail From Code Igniter 2.0.1 - by El Forum - 04-01-2011, 05:39 AM
Sending EMail From Code Igniter 2.0.1 - by El Forum - 04-01-2011, 11:18 PM
Sending EMail From Code Igniter 2.0.1 - by El Forum - 04-02-2011, 01:07 AM
Sending EMail From Code Igniter 2.0.1 - by El Forum - 04-02-2011, 10:33 AM
Sending EMail From Code Igniter 2.0.1 - by El Forum - 04-02-2011, 03:09 PM
Sending EMail From Code Igniter 2.0.1 - by El Forum - 04-02-2011, 08:41 PM
Sending EMail From Code Igniter 2.0.1 - by El Forum - 04-02-2011, 09:18 PM
Sending EMail From Code Igniter 2.0.1 - by El Forum - 04-02-2011, 09:57 PM
Sending EMail From Code Igniter 2.0.1 - by El Forum - 04-02-2011, 09:59 PM
Sending EMail From Code Igniter 2.0.1 - by El Forum - 04-02-2011, 10:00 PM
Sending EMail From Code Igniter 2.0.1 - by El Forum - 04-02-2011, 11:01 PM
Sending EMail From Code Igniter 2.0.1 - by El Forum - 04-02-2011, 11:47 PM
Sending EMail From Code Igniter 2.0.1 - by El Forum - 04-02-2011, 11:52 PM
Sending EMail From Code Igniter 2.0.1 - by El Forum - 04-03-2011, 12:16 AM
Sending EMail From Code Igniter 2.0.1 - by El Forum - 04-03-2011, 06:06 AM
Sending EMail From Code Igniter 2.0.1 - by El Forum - 04-03-2011, 03:31 PM
Sending EMail From Code Igniter 2.0.1 - by El Forum - 04-03-2011, 07:43 PM
Sending EMail From Code Igniter 2.0.1 - by El Forum - 04-03-2011, 10:52 PM
Sending EMail From Code Igniter 2.0.1 - by El Forum - 04-04-2011, 01:25 AM



Theme © iAndrew 2016 - Forum software by © MyBB