Niki
Niki

Reputation: 17

send an email to the user in APEX

I have a region in a page where the text gets populated via a pl/sql. I have a copy button in that page which has a dynamic action to copy the content to a clipboard. Now I want this content to be emailed. what should be my approach.

Thanks & Regards

Upvotes: 1

Views: 276

Answers (1)

Koen Lostrie
Koen Lostrie

Reputation: 18705

Instead of copying the content to the clipboard, you could do the following:

  • Create a page item to hold the text in the region
  • Create a button to Submit the page
  • Create a page process of type "send email" to send the value of the page item with condition of when-button-pressed

Upvotes: 1

Related Questions