我正在使用CakePHP Framework的新版本3.0开发一个网站。我正在使用localhost,并希望在用户填写表单后发送电子邮件。以下是我的控制器中发送电子邮件的代码。
public function index(){
if ($this->request->is('post'){
$email = new Email();
$email->from([$this->request->data["sender"] => "Sender"]
->to("myEmail@hotmail.com")
->subject($this->request->data["Subject"])
->send($this->request->data["message"]);
}
}
当执行此代码时,没有任何事情发生,没有错误,我的邮箱中没有消息。我已经看到它在cakephp3.0中存在一个名为DebugTransport
的类,但我不知道如何使用它来调试我的代码。有人已经使用过它吗?
答案 0 :(得分:16)
大家谢谢大家的回答。
通过使用mailjet.com,我能够在localhost中发送电子邮件。下面是不同的步骤:
在mailjet网站上创建一个帐户
在app.php中,在表格EmailTransport中添加一个新条目。可以在mailjet网站上找到不同的参数主机,端口,用户名和密码。
'EmailTransport' => [
'default' => [
'className' => 'Mail',
// The following keys are used in SMTP transports
'host' => 'localhost',
'port' => 25,
'timeout' => 30,
'username' => 'user',
'password' => 'secret',
'client' => null,
'tls' => null,
],
'mailjet' => [
'host' => 'in-v3.mailjet.com',
'port' => 587,
'timeout' => 60,
'username' => 'xxxxx',
'password' => 'xxxxx',
'className' => 'Smtp'
]
],
在您的控制器中
<?php
namespace App\Controller;
use App\Controller\AppController;
use Cake\Network\Email\Email;
class ContactController extends AppController {
var $helpers = array('Html');
public function index(){
if($this->request->is('post')){
$userName = $this->request->data['firstname'] . " " . $this->request->data['lastname'];
$email = new Email();
$email->transport('mailjet');
try {
$res = $email->from([$this->request->data['email'] => $userName])
->to(['myEmail@hotmail.com' => 'My Website'])
->subject('Contact')
->send($this->request->data['message']);
} catch (Exception $e) {
echo 'Exception : ', $e->getMessage(), "\n";
}
}
}
答案 1 :(得分:3)
您必须使用smpt服务器从配置电子邮件中的localhost发送电子邮件。
2个选择:
从具有邮件配置的真实服务器中使用它
使用smpt服务器在您的localhost上进行测试。有很多提示服务器让你使用它。 见mailjet.com