Hi @Josue464 ,
Your request
Hello community, I am trying to make an app that sends my location through an url to an email.
Someone could help me or give me an orientation, the emails are from my clients and the app has to send the location of the courier that will leave the product.
The code below uses the device location - you can replace this with whatever you need to
With(
{
vURL: "https://www.google.com/maps/search/?api=1&query=" &
Location.Latitude & "," & Location.Longitude
},
Office365Outlook.SendEmailV2(
"YourCustomer@Email.com",
"Courier Location",
"Please click on <a href='" & vURL & "'>this link</a> for the location of the courier."
)
)
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.