3

I have same RSS feeds, that I would like to read them via periodicals menu. I can create a .mobi file as need format for periodicals and send it to Kindle PW2 with usb cable or download it from a remote web server, it goes to periodicals menu as I need, but if I send same file it with email to kindle, it goes Docs. So how can I send file to periodicals with email way ?

tanaydin
  • 133
  • 5

2 Answers2

3

No, this is impossible.

Since the Kindle email service converts everything to a personal document, you must USB sideload in order to retain the periodical tag.

Jim Duehr
  • 46
  • 2
1

Calibre can send mails for you. I'd recommend to check the fine documentation:

Update: and I'd recommend to check the source file for the recipe which is not working properly. It might not has the proper setting for the magazine type in it:

publication_type = 'magazine'

Another option to this is using the CLI tools of Calibre with a CLI mail client, e.g. from a shell script (if you are on *nix OS, like:

#!/bin/bash
/path/to/ebook-convert /path/to/NEWSPAPER.recipe /path/to/OUTPUT.mobi && \
    nail -a /path/to/OUTPUT.mobi -s WHATEVER <<<""

(I'm using this above solution myself.)

Zsolt Botykai
  • 1,229
  • 12
  • 8
  • when I send file with email (with calibre or normal mail client) it goes to "Docs". I don't want this behaviour (as I told before). – tanaydin Aug 04 '14 at 07:55