Hi
We are passing our own amp_user_id with our sendgrid events, but adding email to custom_args does not get picked up or mapped to the user. All other custom_args values appear in the event props except email
for user in org_users:
custom_args = {
"email": user['email'],
"org_id": org['org_id'],
"org_name": org['org_name'],
"signup_code": org.get('signup_code'),
"template_id": template['id'],
"template_name": template.get('name', template['id'])
}
do we need to use the User Mapping API to reconcile this?