I have a Zap that creates new records in a Notion database for every Google Calendar event that matches certain criteria. I am having difficulty correctly adding data to the Content field of the Create Database Item in Notion action.
In particular, if the content includes an email address, these seem to be replaced with unicode encoded content. For example, example@email.com shows up as:
support@zapier.com
I’ve used a Python step to try various encodings as well as playing with Markdown formatting, none of which end up simply writing out the email address into the text of the created page.
Below are a set of examples of what I have tried and haven’t worked. Any suggestions on how to debug this further?
Thanks!
These show up encoded as described above:
(example@email.com)
<example@email.com>
texample@email.com]
These show up as is (not encoded, but not formatted as an email address either)
example%40email.com
example @ email.com
example\@email.com
example\\@email.com
`example@email.com`
``example@email.com``
```example@email.com```
This post has been edited by a moderator to remove sensitive information. Please remember to not share any personally identifiable information when posting as this is a public forum.