Forum Discussion

4 Replies

  • HeatherBryant2's avatar
    HeatherBryant2
    Qrew Assistant Captain
    Hi Sneha,

    One way to do this is to add a Text section on the form with HTML to show an image.

    First you'll need to upload the image to a file attachment field in a table that all the users will be able to view. You could create an Images app that is open to Everyone on the Internet.

    Copy the file attachment URL.

    Open the form that gets emailed and create a Text section at the top of the form. 
    <img src="https://FILEURL.png"; title="Logo"/>

    That should work.
    -Heather
  • Thanks Heather, but how will i do the 1st step of uploading an image, can you give more details on it.
    • GauravSharma3's avatar
      GauravSharma3
      Qrew Commander
      Hi Sneha,

      I would suggest you can create a table in the same app with two fields- Title and attachment then, upload an image in that field and check this option 'Allow access to this file attachment from a Quick Base link without signing in' from the field properties.

      Thanks,

      Gaurav
    • SnehaWankhede's avatar
      SnehaWankhede
      Qrew Cadet

      Thanks I tried that but somehow I am unable to set a constant image, so I tried to embed the following HTML code it worked, you can replace the image with any jpeg and png image from web.


      <!-- Email Header : BEGIN -->
              <table role="presentation" aria-hidden="true" aria-hidden="true" cellspacing="0" cellpadding="0" border="0" align="left" width="400" style="margin: auto;" class="email-container">
              <tr>
              <td style="padding: 20px 0; text-align: left">
              <img src="http://i.imgur.com/jaqHrPf.png" aria-hidden="true" width="500" height="100" alt="alt_text" border="0" style="height: auto; background: #ffffff; font-family: sans-serif; font-size: 15px; line-height: 20px; color: #555555;">
              </td>
              </tr>
              </table>
             <!-- Email Header : END -->