What I want to do is create PDFs in a backend workflow that can be emailed out.
What I would like to do is design a Bubble page that displays as I like it for a user. I understand that if I used a plugin, that page could be converted into a PDF, for example on a button push.
But I also understand that using outside services via API call, then if I can ship them the html, then they can generate the PDF.
On the backend workflow, what I would like to do is for each user on a list, is the following:
- Get the html for that bubble page as if the user rendered it
- Ship to the outside service to generate the pdf
- Store the PDF on return
- Send out to the user via email as an attachment
Am I thinking about how to approach this correctly? If so, how would I render the page in the backend and capture the html?
Thanks in advance for any help.