<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Add an email link with subject, body and cc'd autofilled in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Add-an-email-link-with-subject-body-and-cc-d-autofilled/m-p/3459843#M131970</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a table with a list of ID's. I would like an email icon to the right of each ID that will create an email with the same address and subject but the body to have the specific ID and a specific person cc'd depending on the ID.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;</description>
    <pubDate>Thu, 05 Oct 2023 07:47:21 GMT</pubDate>
    <dc:creator>kadekwijaya</dc:creator>
    <dc:date>2023-10-05T07:47:21Z</dc:date>
    <item>
      <title>Add an email link with subject, body and cc'd autofilled</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Add-an-email-link-with-subject-body-and-cc-d-autofilled/m-p/3459843#M131970</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a table with a list of ID's. I would like an email icon to the right of each ID that will create an email with the same address and subject but the body to have the specific ID and a specific person cc'd depending on the ID.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Thu, 05 Oct 2023 07:47:21 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Add-an-email-link-with-subject-body-and-cc-d-autofilled/m-p/3459843#M131970</guid>
      <dc:creator>kadekwijaya</dc:creator>
      <dc:date>2023-10-05T07:47:21Z</dc:date>
    </item>
    <item>
      <title>Re: Add an email link with subject, body and cc'd autofilled</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Add-an-email-link-with-subject-body-and-cc-d-autofilled/m-p/3464323#M132184</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="523401" data-lia-user-login="kadekwijaya" class="lia-mention lia-mention-user"&gt;kadekwijaya&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You can leverage the 'mailto' protocol combined with DAX to create a custom column.&amp;nbsp;Assuming you have a table IDs that looks like this:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| ID   | CC_Email            |
|------|---------------------|
| ID1  | person1@example.com |
| ID2  | person2@example.com |
| ...  | ...                 |&lt;/LI-CODE&gt;&lt;P&gt;This formula will create the 'mailto' link for each ID:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Email Link = 
"mailto:recipient@example.com" &amp;amp; 
"?subject=Issue with " &amp;amp; IDs[ID] &amp;amp; 
"&amp;amp;body=Please check " &amp;amp; IDs[ID] &amp;amp; 
"&amp;amp;cc=" &amp;amp; IDs[CC_Email]&lt;/LI-CODE&gt;&lt;P&gt;Should you require any further assistance, please do not hesitate to reach out to me.&lt;/P&gt;</description>
      <pubDate>Fri, 06 Oct 2023 16:43:00 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Add-an-email-link-with-subject-body-and-cc-d-autofilled/m-p/3464323#M132184</guid>
      <dc:creator>Sahir_Maharaj</dc:creator>
      <dc:date>2023-10-06T16:43:00Z</dc:date>
    </item>
    <item>
      <title>Re: Add an email link with subject, body and cc'd autofilled</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Add-an-email-link-with-subject-body-and-cc-d-autofilled/m-p/3466429#M132309</link>
      <description>&lt;P&gt;Thank you so much!&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How would I edit the formula to have the main body look like this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Dear ____&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please review "ID"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&amp;nbsp;&lt;/P&gt;&lt;P&gt;______&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;</description>
      <pubDate>Mon, 09 Oct 2023 08:41:27 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Add-an-email-link-with-subject-body-and-cc-d-autofilled/m-p/3466429#M132309</guid>
      <dc:creator>kadekwijaya</dc:creator>
      <dc:date>2023-10-09T08:41:27Z</dc:date>
    </item>
    <item>
      <title>Re: Add an email link with subject, body and cc'd autofilled</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Add-an-email-link-with-subject-body-and-cc-d-autofilled/m-p/4231368#M167362</link>
      <description>&lt;P&gt;Does anyone know how to succesfully embed a link to a specific record in Dynamics in the email body?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The link contains several "&amp;amp;" characters and it seems that the email body does not really respond to that very well.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Even just trying to add the character "&amp;amp;" as text to the body (or to the cc or bcc field for that matter) is not working for me.&lt;/P&gt;&lt;P&gt;Perhaps using the ALT 38 code is a work around?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hope someone figured this one out for me already &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 07 Oct 2024 07:58:21 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Add-an-email-link-with-subject-body-and-cc-d-autofilled/m-p/4231368#M167362</guid>
      <dc:creator>PEt0rtje</dc:creator>
      <dc:date>2024-10-07T07:58:21Z</dc:date>
    </item>
  </channel>
</rss>

