Can you screenshot that portion of the Automation for both you Slack and Email steps?

Weird. It may have something to do with Email’s message field doing something weird with markdown formatting. Try doing eLink to doc](Record (Step 1: Trigger) | Field values | link to Doc)
.
If that doesn’t work try using the exact same text as your are in the Slack message.
Welcome to the community, @xavier_williams! :grinning_face_with_big_eyes: What triggers the automation? My first reaction when automations contain incomplete information from a record is that the automation is firing in the middle of an update. However, if only the email is being affected and not the Slack message, that would seem to shoot down that theory, but I’m still curious to know what the trigger is.
Weird. It may have something to do with Email’s message field doing something weird with markdown formatting. Try doing eLink to doc](Record (Step 1: Trigger) | Field values | link to Doc)
.
If that doesn’t work try using the exact same text as your are in the Slack message.
I tried using the same text and it still is not work out for me. The slack message is sending the proper link. And the email is removing the under_scores from the link.
I tried using the same text and it still is not work out for me. The slack message is sending the proper link. And the email is removing the under_scores from the link.
Did you try formatting the link as a markdown link using the (display text)[actual link] syntax?
Did you try formatting the link as a markdown link using the (display text)[actual link] syntax?
How do I do that? Within the automation or within the table?
How do I do that? Within the automation or within the table?
Within the automation. Precede the input from the trigger record with (some display text) and wrap the input value with square brackets. I’m not sure if that’ll work but it might be worth a shot.
Within the automation. Precede the input from the trigger record with (some display text) and wrap the input value with square brackets. I’m not sure if that’ll work but it might be worth a shot.
I gave that a shot, and it did not work either.
I tried using the same text and it still is not work out for me. The slack message is sending the proper link. And the email is removing the under_scores from the link.
I ran a quick test that confirmed this markdown connection. Apparently the field data is inserted before markdown processing occurs, so underscores that come from fields are viewed as italics highlight markers.

The way I got the second URL to pass through was by using a formula field that adds a backslash before each underscore. It was a longshot because backslashes are often used in strings to “escape” a character that should not be processed normally (e.g. quotes in strings), and sure enough it works to “escape” the underscores so that the markdown process ignores them. Here’s my formula:
SUBSTITUTE(URL, "_", "\_")
Insert that formula field in the email body, and it’ll work.


Does anyone have suggestions on how to fix this if it’s just a test field? I have values with underscores in them that are getting stripped out with the email automation.
example:
Company_Campaign_Date_032421
I tried the above fix but I just get a blank in that spot on the email send.
Thanks!
Does anyone have suggestions on how to fix this if it’s just a test field? I have values with underscores in them that are getting stripped out with the email automation.
example:
Company_Campaign_Date_032421
I tried the above fix but I just get a blank in that spot on the email send.
Thanks!
@Jeannie_Ruesch_BDC Can you share a screenshot showing what you tried? I’m guessing something might be a little off, but without seeing the details it’s hard to say what that might be.
You can also try inserting the url in markdown format. [square brackets around the text to display](https://parenthesis.around.the.actual.link)
make sure there is no space between the closing square bracket and the opening parentheses.
You can also try inserting the url in markdown format. [square brackets around the text to display](https://parenthesis.around.the.actual.link)
make sure there is no space between the closing square bracket and the opening parentheses.
Sadly, this only works when the field is a normal URL field, or if you hardcode the URL into the message body itself.
If the field is a formula field that results in a URL, it fails.
I’m going to report this to support@airtable.com, and hopefully they will fix this at some point.
I ran a quick test that confirmed this markdown connection. Apparently the field data is inserted before markdown processing occurs, so underscores that come from fields are viewed as italics highlight markers.

The way I got the second URL to pass through was by using a formula field that adds a backslash before each underscore. It was a longshot because backslashes are often used in strings to “escape” a character that should not be processed normally (e.g. quotes in strings), and sure enough it works to “escape” the underscores so that the markdown process ignores them. Here’s my formula:
SUBSTITUTE(URL, "_", "\_")
Insert that formula field in the email body, and it’ll work.


Hi! I can’t get this to work. Do you know if this solution is still possible? When i try to make a formula field that uses your formula, the link is still broken when inserted into the email.
Hi! I can’t get this to work. Do you know if this solution is still possible? When i try to make a formula field that uses your formula, the link is still broken when inserted into the email.
The quickest way I got this to work was by setting the text to Markdown syntax. Using tick marks… It removes font formatting, but it maintains “_” without having to create yet another column.
apiKey
is your secret API token.
FWIW. I had the same exact issue that started this thread and followed the instructions presented by kuovonne (above) and it worked for me. Thank you.
Sadly, this only works when the field is a normal URL field, or if you hardcode the URL into the message body itself.
If the field is a formula field that results in a URL, it fails.
I’m going to report this to support@airtable.com, and hopefully they will fix this at some point.
me too. When I inserted a field into the body email, it’s show the whole url in the result.
Sadly, this only works when the field is a normal URL field, or if you hardcode the URL into the message body itself.
If the field is a formula field that results in a URL, it fails.
I’m going to report this to support@airtable.com, and hopefully they will fix this at some point.
I figured it out for URLs produced with formulas!
You’re right, when the URL is hardcoded into the email, escaping the backspaces works fine, but for some reason, URLs produced by a formula and then inserted into the email dynamically always break.
I realized that no matter what you do, the underscore has to be hardcoded into the email.
So I used formulas that break up the URL into the sections around the underscores, and then put it all together in the email.
dynamic inserted url portion]_odynamic inserted url portion2]
So you have to create several fields, one for each portion of the url broken by an underscore, and then put those fields into the email around a hardcoded “_”.
It’s annoying, but it totally solves the problem.