I'm using nodemailer, and pdfmake to create a pdf, and send it in the email's attachments. I don't have too much experience with file handling in NodeJS, and I can't make it work.
See example where the file is saved. As I've checked the types, createPdfKitDocument
returns an extension of NodeJS.ReadableStream
.
In nodemailer I can include attachments as Stream
or Readable
See documentation.
However, I'm not able to send the attachment without saving it, and give the path to the file.
I tried to provide the ReadableStream
returned from createPdfKitDocument
as is, it result in hanging promise. I tried to wrap it with Readable.from()
, it didn't work. I tried to call .read()
on the result, and it didn't result in hanging promise, but the pdf cannot be opened.
Any ideas how can I convert a ReadableStream
to Readable
, or Buffer
?