I found a workflow that works for me. Makes sending epubs infinitely easier.
Save to Disk template:
Code:
{series} {series_index:0>5.2f} {title} - {authors}
BAT file:
Code:
@ECHO OFF
PUSHD .
FOR /R %%d IN (.) DO (
cd "%%d"
IF EXIST *.epub (
REN *.epub *.txt
)
)
POPD
Use Save to Disk option to put the books in a single folder.
Put the .bat file inside the same folder.
The .bat file will automatically change all .epubs inside the folder to .txt so you can send it using the Send to Kindle app.
The template includes the author because the app doesn't automatically populate the author field. Just cut & paste.
This cuts through so many steps that I'm really considering this over sideloading.
Anyway, I just thought I'd share in case somebody else plan to send bulk books to their Kindles.