Search code examples
gmailazure-data-factoryazure-logic-apps

Add emoji to gmail subject line from data factory to logic app


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>

Solution

  • 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.

    enter image description here

    Steps in detail :

    enter image description here

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

    enter image description here

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

    Results:

    enter image description here