Kordian Wikliński
Kordian Wikliński

Reputation: 55

CakePHP send email

I've got a problem with sending mail using CakePHP. Everythings giong well, but i didn't receive any single mail , i tired to send to 2 different emails .

//WebsitesController.php

App::uses('AppController','Controller');
App::uses('CakeEmail','Network/Email');
class WebsitesController extends AppController
{
    public $helpers = array('Html','Form','Session');
    public $components = array('Email','Session');

public function contact()
{

    $this->set('dane',  $this->Website->findById(4));        
}
public function contact_email()
{ /* all data is taken from contact.ctp, I debuged all data below and it's correct */
    $useremail = $this->data['Website']['useremail'];
    $usertopic = $this->data['Website']['usertopic'];
    $usermessage = $this->data['Website']['usermessage'];
    $Email = new CakeEmail();
    $Email->from(array($useremail => ' My Site'));
    $Email->to('[email protected]');
    $Email->subject($usertopic); // all data is correct i checked several times
    $Email->send($usermessage);
    if($Email->send($usermessage))
    {
        $this->Session->setFlash('Mail sent','default',array('class'=>'alert alert-success'));
        return $this->redirect(array('controller'=>'websites','action'=>'contact'));
    }
    $this->Session->setFlash('Problem during sending email','default',array('class'=>'alert alert-warning'));
}
}

//contact.ctp

 <fieldset>
        <?php
            echo $this->Form->create('Website',array('controller'=>'websites','action'=>'contact_email'));
            echo $this->Form->input('useremail',array('class'=>'form-control'));
            echo $this->Form->input('usertopic',array('class'=>'form-control'));
            echo $this->Form->input('usermessage',array('class'=>'form-control'));
            echo $this->Form->submit('Send',array('class'=>'btn btn-default')); 
            echo $this->Form->end(); 
        ?>
    </fieldset>

all seems to be fine, even if statement in function contact_email is approved.

configuration ( i'm working on localhost, xampp, netbeans 7.4)

public $smtp = array(
    'transport' => 'Smtp',
    'from' => array('site@localhost' => 'My Site'),
    'host' => 'localhost',
    'port' => 25,
    'timeout' => 30,
    'username' => 'user',
    'password' => 'secret',
    'client' => null,
    'log' => false,
    //'charset' => 'utf-8',
    //'headerCharset' => 'utf-8',
);

Upvotes: 1

Views: 17838

Answers (2)

sunny
sunny

Reputation: 11

Please follow the steps:

step 1: In this file (app\Config\email.php) add this:

public $gmail = array(
        'transport' => 'Smtp',
        'from' => array('site@localhost' => 'Any Text...'),
        'host' => 'ssl://smtp.gmail.com',
                'port' => 465,
        'timeout' => 30,
        'username' => '[email protected]',
        'password' => 'yourPassword',
        'client' => null,
        'log' => false,
        //'charset' => 'utf-8',
        //'headerCharset' => 'utf-8',
    );

step 2: Add an email template (app\View\Emails\html\sample.ctp)

<body>
<h1>Email Testing: <?php echo $first_name?></h1>
</body>

step 3: Change the code in your method as shown below:

public function send_my_email() {
        App::uses('CakeEmail', 'Network/Email');
        $Email = new CakeEmail();
        $Email->config('gmail'); //configuration
        $Email->emailFormat('html'); //email format
        $Email->to('[email protected]');
        $Email->subject('Testing the emails');
        $Email->template('sample');//created in above step
        $Email->viewVars(array('first_name'=>'John Doe' ));//variable will be replaced from template
        if ($Email->send('Hi did you receive the mail')) {
            $this->Flash->success(__('Email successfully send on [email protected]'));
        } else {
            $this->Flash->error(__('Could not send the mail. Please try again'));
        }
    }

Upvotes: 1

Fury
Fury

Reputation: 4776

try this, you didn't set the config

public function contact_email()
{ /* all data is taken from contact.ctp, I debuged all data below and it's correct */
    $useremail = $this->data['Website']['useremail'];
    $usertopic = $this->data['Website']['usertopic'];
    $usermessage = $this->data['Website']['usermessage'];
    $Email = new CakeEmail();
    $Email->config('smtp')
          ->emailFormat('html')
          ->from($useremail)        
          ->to('[email protected]')
          ->subject($usertopic); // all data is correct i checked several times
    if($Email->send($usermessage))
    {
        $this->Session->setFlash('Mail sent','default',array('class'=>'alert alert-success'));
        return $this->redirect(array('controller'=>'websites','action'=>'contact'));
    } else  {
        $this->Session->setFlash('Problem during sending email','default',array('class'=>'alert alert-warning'));
    }
}

Upvotes: 2

Related Questions