将表情符号添加到从数据工厂发送到逻辑应用的Gmail主题行。

huangapple go评论60阅读模式
英文:

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>&#x1F4A3;</td>
    </tr>
    <tr>
        <th>十进制:</th>
        <td>&#128163;</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.

&lt;table&gt;  
    &lt;tr&gt;
        &lt;th&gt;Unicode Character Name:
        &lt;td&gt;BOMB  
    &lt;tr&gt;
        &lt;th&gt;Hexadecimal:
        &lt;td&gt;&amp;#x1F4A3;   
    &lt;tr&gt;
        &lt;th&gt;Decimal:
        &lt;td&gt;&amp;#128163;
&lt;/table&gt;

答案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.

将表情符号添加到从数据工厂发送到逻辑应用的Gmail主题行。

Steps in detail :

将表情符号添加到从数据工厂发送到逻辑应用的Gmail主题行。

In the next step, I have used switch action for different statuses and added send an email (v2) step.

将表情符号添加到从数据工厂发送到逻辑应用的Gmail主题行。

Similarly, you can add cases with emoji's for the other statuses too.

Results:

将表情符号添加到从数据工厂发送到逻辑应用的Gmail主题行。

huangapple
  • 本文由 发表于 2023年5月18日 05:13:40
  • 转载请务必保留本文链接:https://go.coder-hub.com/76276243.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定