Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

First, I want to say sorry if this question is anyway stupid, but I am new at this and google is not very helpfull at the moment :D. I have host at GoDaddy. When I click on email accounts, I get messege that I need to buy this option (there is no option to create one). My question is - can I setup codeigniter to go via gmail and how or is it neccessery for host to have email server (if this is the case how can I found out what is email for GoDaddy)?

share|improve this question
Is this what you're looking for? stackoverflow.com/q/11014022 – Robert Harvey Dec 24 '12 at 15:58
I have experienced godaddy not relay email from php code to gmail account in the past, may be they have changed it – Kasun Dec 24 '12 at 16:03

1 Answer

up vote 1 down vote accepted

you can use gmail in codeigniter like below,

http://ellislab.com/forums/viewthread/132443/

function Email()
{
        parent::Controller();   
            $this->load->library('email');
}

function index()
{
    $config['protocol']    = 'smtp';
    $config['smtp_host']    = 'ssl://smtp.googlemail.com';
    $config['smtp_port']    = '465';
    $config['smtp_timeout'] = '7';
    $config['smtp_user']    = 'mygmail@gmail.com';
    $config['smtp_pass']    = '*******';
    $config['charset']    = 'utf-8';
    $config['newline']    = "\r\n";
    $config['mailtype'] = 'text'; // or html
    $config['validation'] = TRUE; // bool whether to validate email or not      

    $this->email->initialize($config);


    $this->email->from('mygmail@gmail.com', 'myname');
    $this->email->to('target@gmail.com'); 

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

    $this->email->send();

    echo $this->email->print_debugger();

     $this->load->view('email_view');

   } 
share|improve this answer
I guess this is it, but I got this error: Message: fsockopen() [function.fsockopen]: unable to connect to ssl://smtp.gmail.com:465 (Connection refused). – Sasha Dec 24 '12 at 16:45
can you try tls://smtp.gmail.com:587 also pls chk if smtp enabled in gamil – Kasun Dec 24 '12 at 16:50
Where can I check this? – Sasha Dec 24 '12 at 16:53
also try ssl://smtp.googlemail.com – Kasun Dec 24 '12 at 16:53
I have updated code, you can copy and upload it to godaddy server – Kasun Dec 24 '12 at 16:54
show 2 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.