openam / calibrephp

Calibre HTML and OPDS web server based on CakePHP
http://openam.github.io/calibrephp
MIT License
39 stars 14 forks source link

Share books to e-mail #2

Closed mburtscher closed 11 years ago

mburtscher commented 11 years ago

With this feature the user is able to share e-books to e-mail addresses. This is especially useful when using an Amazon Kindle. CalibrePHP will automatically detect which devices/e-mails are compatible with any of the formats and will show share button just for those addresses. Download/Share links are shown as drop-down menus.

screenshot from 2013-06-11 20 52 30

For this to work e-mail configuration has to be set up in app/Config/email.php and devices have to be defined in app/Config/settings.php like this:

$config = array(
  'Settings' => array(
    // ...
    'share' => array(
      'example@kindle.com' => 'awz,mobi,epub',
      'example2@kindle.com' => 'awz,mobi',
    ),
  ),
);