Is there a way to simply identify and return the user's email address from an INBOX ACTION.
E.G
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "ConfirmAction",
"name": "My Birthday Party",
... information about the event ...
"action": {
"@type": "RsvpAction",
"actionHandler": {
"@type": "HttpActionHandler",
"url": "https://mysite.com/rsvp?email_address=USERS'S EMAIL ADDRESS HERE",
"method": "POST",
"requiredProperty": "rsvpStatus",
}
}
}
</script>
All the users our organization use a Gmail Account so there is no need to generate an additional identifier in place of "email_address=USERS'S EMAIL ADDRESS HERE" shown in the link above since we already have their email addresses on file.
Thank you.