我正在寻找一个网站。我是这个网站的新手,我不知道CakePhp。此网站有用户,我尝试执行忘记密码页。我搜索过但不是一种方式或错过了。
UsersController.php
class EmailConfig {
public $default = array(
'transport' => 'Mail',
'from' => 'you@localhost',
);
public $smtp = array(
'transport' => 'Smtp',
'from' => array('mymail@gmail.com' => 'Mysite'),
'host' => 'smtp.gmail.com',
'port' => 587,
'timeout' => 30,
'username' => 'mymail@gmail.com',
'password' => 'mypassword',
'client' => null,
'log' => true,
'charset' => 'utf-8',
'headerCharset' => 'utf-8',
'tls' => true
);
和Config / email.php
<form action="upload.php" method="post" enctype="multipart/form-data">
Select image to upload:
<input type="file" name="fileToUpload" id="fileToUpload">
<input type="submit" value="Upload Image" name="submit">
</form>
我再说一遍:我是这个网站上的新工人,另一名工人使用了这些代码。我不知道为什么代码现在不起作用。我问过这个问题。
非常感谢所有建议。