Is it possible to add HTML buttons in send an email(V2) of Power automate. I want to create 3 buttons which has links to 3 different sharepoint sites

sharepoint.stackexchange https://sharepoint.stackexchange.com/questions/285873

Вопрос

I am trying to trigger an email via Power Automate which includes 3 buttons and few other information. when the recipient receives this email, he has 3 buttons which on click takes him to different sharepoint site. Is it possible to achieve this using html in 'send an email(v2)' of power automate.enter image description here

Это было полезно?

Решение

I don't think you can make html button () works in emails. However, you can create links () with pure CSS and elements that would looks like button.

See sample of HTML used in [Send an email (V2)] MS flow

<p><br>
<br>
This is a <strong>Test</strong> email containing links  looking like html buttons<br>
<br>
<table width="100%" cellspacing="0" cellpadding="0">
  <tr>
      <td>
          <table cellspacing="3" cellpadding="3">
              <tr>
                  <td style="border-radius: 5px;" bgcolor="#1281ee">
                      <a href="https://google.com" target="_blank" style="padding: 8px 12px; font-size: 14px; color: #ffffff;text-decoration: none;font-weight:bold;display: inline-block;">LTA                            
                      </a>
                  </td>

    <td style="border-radius: 5px;" bgcolor="#1281ee">
                      <a href="https://google.com" target="_blank" style="padding: 8px 12px; font-size: 14px; color: #ffffff;text-decoration: none;font-weight:bold;display: inline-block;">SMT                              
                      </a>
                  </td>

<td style="border-radius: 5px;" bgcolor="#1281ee">
                      <a href="https://google.com" target="_blank" style="padding: 8px 12px; font-size: 14px; color: #ffffff;text-decoration: none;font-weight:bold;display: inline-block;">SOP                              
                      </a>
                  </td>
              </tr>
          </table>
      </td>
  </tr>
</table>
<br>
<br>
</p>

enter image description here

Лицензировано под: CC-BY-SA с атрибуция
Не связан с sharepoint.stackexchange
scroll top