Bishan
Bishan

Reputation: 15702

Email PDF File Created with Jasper Report in Oracle Apex

I'm using Jasper Report to generate reports in pdf format in my apex application. i want to email this generated pdf file.

Imagine there is a button as Make Report. when user click this button, pdf file should create and send that created pdf file with email.

I know process to create pdf file using Jasper Report. i can implement that part in my oracle apex application. but how could i email pdf file after generating ?

Upvotes: 1

Views: 1317

Answers (1)

Tom
Tom

Reputation: 7028

I don't have jasper reports, but if you have made it work already: can you call it and get a report back in say a BLOB?

If yes, then using apex_mail can help you, since it provides the ADD_ATTACHMENT procedure, which takes a blob as input.

Upvotes: 1

Related Questions