Hello All!
Been trying my best to get this to work and i am just having a hell of a time. I have watched multiple videos but cant seem to get the data to showcase! I am creating an order form, but some orders need approval requests to be sent, i am trying to automate this process with a button press to take the information listed in the form , and send it to a specific email inbox with the content. here is my coding for the button:
Office365.SendEmail( "emailaddress@recipiant.com",
"Please provide authorization for:" & ThisItem.'Column1',
"CC Approval required for:"
& Char(13)
& Char(13) &
"Dealer: " & ThisItem.'Column1'
& Char(13) &
"Dealer #: " & ThisItem.'DEALER_N'
& Char(13) &
"Order #: " & ThisItem.'ORDER_N'
& Char(13) &
"Total: " & ThisItem.'VALUE' ,
{From:"fromemailaddress@sender.com"}
)
The content shows as follows:
------
CC Approval required for:
Dealer:
Dealer #:
Order #:
Total:
-----
Email doesn't have any of my filled in form content. Not sure what i am doing wrong, the coding works, email is sent, but no information from the form is included. Help!