Add a new configuration item to handle mail sending. re #53
這個提交存在於:
父節點
8010d4598b
當前提交
1f4db62fc1
共有 1 個檔案被更改,包括 28 行新增 和 0 行删除
|
@ -167,4 +167,32 @@
|
|||
*/
|
||||
$config['cops_provide_kepub'] = "0";
|
||||
|
||||
/*
|
||||
* Enable and configure Send To Kindle (or Email) feature.
|
||||
*
|
||||
* Don't forget to authorize the sender email you configured in your Kindle's Approved Personal Document E-mail List.
|
||||
*
|
||||
* If you want to use a simple smtp server (provided by your ISP for example), you can configure it like that :
|
||||
* $config['cops_mail_configuration'] = array( "smtp.host" => "smtp.free.fr",
|
||||
* "smtp.username" => "",
|
||||
* "smtp.password" => "",
|
||||
* "smtp.secure" => "",
|
||||
* "address.from" => "cops@slucas.fr"
|
||||
* );
|
||||
*
|
||||
* For Gmail :
|
||||
* $config['cops_mail_configuration'] = array( "smtp.host" => "smtp.gmail.com",
|
||||
* "smtp.username" => "YOUR GMAIL ADRESS",
|
||||
* "smtp.password" => "YOUR GMAIL PASSWORD",
|
||||
* "smtp.secure" => "ssl",
|
||||
* "address.from" => "cops@slucas.fr"
|
||||
* );
|
||||
*/
|
||||
$config['cops_mail_configuration'] = array( "smtp.host" => "smtp.free.fr",
|
||||
"smtp.username" => "",
|
||||
"smtp.password" => "",
|
||||
"smtp.secure" => "",
|
||||
"address.from" => "cops@slucas.fr"
|
||||
);
|
||||
|
||||
?>
|
載入中…
新增表格
Add a link
新增問題並參考