Hi @Cedric0404,
Not sure if I unserstand you correctly, do you just want to copy a text in your canvas app?
If so, we could directly refer to this text from its control, like a Label or a TextInput or anything else in a string way...
When it comes to send email function, you just need to refer to that text directly:
Office365Outlook.SendEmailV2(
to_input.Text, // To address
Subject_input.Input.Text, // Subject of the email
Body_input.Text // Body of the email
)
If you want to refer to it as a whole like the clipboard button, absolutely you could achieve this using a copy button.
Set Button OnSelect:
Set(varText,Text_from_control)
Once you click this copy button, a variable will be generated, everytime you want to refer to it, you could just refer to this variable.