Hello,
I would like to write a java based app that sends e-mails using the confluence REST-API.
Formerly I wrote a bot that did that using the frontend after updating the page(not nice, but worked fine). The basic steps were:
1. Update(PUT) page with new content (daily report)
2. Send e-mail using the frontend (share feature)
I can imagine the app working like:
Option1: Use PUT to update page, use an not yet known way to send an email using Rest-API.
Option2: Use PUT to update page, use another way to send an e-mail with the already available content using Java.
I think option2 would be enough to get the results we need.
I still would like to know if there is a "nice" way of confluence doing that.
Any hints appreciated. Thank you.