Hi @Stmorgan ,
Could you please share a bit more about scenario?
Where do you put your Office365.SendEMail() formula? Do you put your Office365.SendEMail() formula along with the SubmitForm() formula within the "Submit" button?
Further, could you please share a screenshot about your app?
I suppose that you put your Office365.SendEMail() formula along with the SubmitForm() formula within the "Submit" button, and want to send an email with the form link when you submit your form data, is it true?
I assume that you use SubmitForm function to submit your form data into your SP list, please consider modify your formula as below:
Set the OnSuccess property of the Edit form (EditForm1) in your app to following:
Office365.SendEmail(
"blank@blank.com",
"Sending a link",
"This is our link: " & EditForm1.LastSubmit.'Link to item'
)
Note: The EditForm1 represents the Edit form control within your app.
Best regards,