Step 1. Creating Email Templates

  1. Navigate to Email Template Database

  2. Click the “New” button in the database page.

    Untitled

  3. Fill in the Subject and Body

    <aside> 💡 In the Lite version:

Step2. Adding Templates to Your Database

  1. Open the database from which you want to send the email.

    Untitled

  2. Open a page and click Add a property

    Untitled

  3. Select Relation

    CleanShot 2024-05-28 at 21.57.06.png

  4. Choose Email Templates

    Untitled

  5. Click Add relation

    CleanShot 2024-05-28 at 22.08.50.png

  6. Select the template you added.

    Untitled

    Untitled

    You can switch the template here by clicking the plus button.

    Untitled

Step3. Creating a 'Send Email' Button

  1. Open your database and click Add property

    CleanShot 2024-05-28 at 23.26.15.png

  2. Select Formula

    Untitled

  3. Click Edit

    Untitled

  4. Copy and paste this formula and Click Done

    lets(subject,prop("Email Templates").first().prop("Subject"),subject,replaceAll(subject,"\\n","%0A"),subject,replaceAll(subject,"\\r","%0D"),subject,replaceAll(subject,"\\?","%3F"),subject,replaceAll(subject,",","%2C"),subject,replaceAll(subject," ","%20"),subject,replaceAll(subject,"\\.","%2E"),body,prop("Email Templates").first().prop("Body"),body,replaceAll(body,"\\n","%0A"),body,replaceAll(body,"\\r","%0D"),body,replaceAll(body,"\\?","%3F"),body,replaceAll(body,",","%2C"),body,replaceAll(body," ","%20"),body,replaceAll(body,"\\.","%2E"),link("Create an email","mailto:[email protected]?subject="+subject+"&body="+body))
    
  5. Name the formula property Send Email or any name you prefer.

    Untitled

That’s all! Now you can generate an email from template just by clicking Create an email!