英文:
Add emoji to gmail subject line from data factory to logic app
问题
我正在尝试在Azure数据工厂中向Gmail主题行添加表情符号,并使用Azure逻辑应用发送电子邮件。我不确定是否支持使用十进制或十六进制值来实现表情符号功能。例如,当管道失败时,可以使用炸弹表情符号。
<table>
<tr>
<th>Unicode字符名称:</th>
<td>BOMB</td>
</tr>
<tr>
<th>十六进制:</th>
<td>💣</td>
</tr>
<tr>
<th>十进制:</th>
<td>💣</td>
</tr>
</table>
英文:
I am trying to add emoji to the gmail subject line in azure data factory and email is sent using azure logic apps. I'm not sure if they emoji feature is supported using the decimal or hexadecimal values. For instance when the pipeline fails use bomb emoji.
<table>
<tr>
<th>Unicode Character Name:
<td>BOMB
<tr>
<th>Hexadecimal:
<td>&#x1F4A3;
<tr>
<th>Decimal:
<td>&#128163;
</table>
答案1
得分: 1
以下是翻译好的部分:
"After reproducing from my end, pasting the emoji directly while sending the mail did the trick."
"在我这边复制后,直接在发送邮件时粘贴表情符号就可以了。"
"Below is the complete flow of my logic app."
"下面是我的逻辑应用的完整流程。"
"Steps in detail :"
"详细步骤:"
"In the next step, I have used switch action for different statuses and added 'send an email (v2)' step."
"在下一步中,我使用了开关动作来处理不同的状态,并添加了“发送电子邮件(v2)”步骤。"
"Similarly, you can add cases with emoji's for the other statuses too."
"类似地,您也可以为其他状态添加带有表情符号的情况。"
"Results:"
"结果:"
英文:
After reproducing from my end, pasting the emoji directly while sending the mail did the trick.
Below is the complete flow of my logic app.
Steps in detail :
In the next step, I have used switch action for different statuses and added send an email (v2)
step.
Similarly, you can add cases with emoji's for the other statuses too.
Results:
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论