Skip to main content
Skip table of contents

Send Email

Overview

Effective communication is very important in maintaining a strong connection with stakeholders, and having the ability to send emails directly from the system to different entities such as students, agents, providers can significantly enhance this process.

Emails can be sent individually to a student, agent or homestay providers by:

  1. Single text email : Send a single simple text email. Optionally, include a PDF generated from a Microsoft Word template as an attachment.

  2. Bulk simple text email using Mandrill and bookmarks : Send bulk simple text emails to multiple selected students, agents or homestay families by using Mandrill using templates containing data bookmarks with simple text.

  3. Bulk HTML email using Mandrill : Send bulk HTML emails to multiple selected students, agents or homestay families by using Mandrill (and MailChimp for the design) of templates with eBECAS/EDMISS which enables Colleges to send html formatted email with embedded graphics and data.

Considerations for Email Providers

Providers for Sending Single Emails

You can use any SMTP server to send single emails from eBECAS/EDMISS. The SMTP service should allow to send emails on behalf of the users, without per user authentication. 

While your College can use a single College based email account, it is strongly encouraged for Colleges to use a separate email service such as Mandrill (by MailChimp) to ensure emails are not marked as spam and are verified.

Microsoft 365, due to its security policies and restrictions, is not ideal for eBECAS/EDMISS.

We recommend using any of the services that we integrate with:

Provider for Sending Bulk Emails

To send bulk emails from eBECAS/EDMISS, you need to use Mandrill (by MailChimp).

Mandrill (by MailChimp) integration with eBECAS/EDMISS enables formatted html email templates to send single and bulk emails to Students, Agents and Homestay providers that contain eBECAS/EDMISS data.

Set up Email Provider

Set up a SMTP Provider for Sending Single Emails

To set up SMTP server,

  1. Go to Utilities > Setup Configuration > Setup > Email.

  2. Enter the SMTP server details and credential.

  3. (Optional) Set the default email address for the sender, and set the default email address for BCC.

  4. Click on Test button to verify that the entered details are functioning properly.

  5. Click on Save to finish.

image-20240508-133423.png

Set up Mandrill for Sending Bulk Emails

eBECAS/EDMISS allows you to send bulk emails using simple text email templates with bookmarks or HTML email templates via Mandrill.

Follow these steps to set up Mandrill in eBECAS/EDMISS.

  1. Create a Mandrill account through this link: https://mandrillapp.com

  2. Log in to Mandrill and go to the Dashboard > Settings.

  3. Click on Add API key and copy the created key.

    image-20240508-142645.png

  4. Go to Utilities > Setup Configuration > Email Templates > Configuration.

  5. Paste the copied API key in API Key field.

  6. Config the options.

    1. Use Handlerbars: Select it to use Bookmarks in Email Templates.

    2. Default to Local Email: Select it to set Local Email address as default when sending emails to students.

  7. Click on Save to finish.

    image-20240508-142703.png

Email Templates

When sending bulk emails, templates are essential. Templates enable you to craft messages ranging from simple text emails to complex messages with dynamic data.

Simple Text Email Templates

  1. Go to Utilities > Setup Configuration > Email Templates > your desired object.

  2. Click on New.

    image-20240509-005601.png

  3. Select Simple Text as the type.

  4. Enter the details for the new template.

    1. Location : Specify the location that this template is used on. Leave empty for global location use.

    2. Name : Set a name for this template.

    3. API Slug Name : Fill the Mandrill API Slug name specified in Mandrill for HTML template. This field is not needed for simple text email templates.

    4. Description : Set a description for this template.

    5. Email Subject : Set the subject of the email to be sent through the template.

    6. Use User for From Details : Select it to automatically use the current user's name and email address as the sender's name and email address for the email to be sent through the template.

    7. From Name : Set the sender's name for the email to be sent through the template. This field will be disabled if you use the User for From Details option.

    8. From Email : Set the sender's email address for the email to be sent through the template. This field will be disabled if you use the User for From Details option.

    9. Category : Set the default category for the email to be sent through the template.

  5. Enter the body of the email message to be sent through the template.

Tip

You can use Bookmarks that are placeholders will be replaced with data during merging to insert dynamic values such as outstanding fees, student details including course, class and attendance.

Select the bookmark that you’d like to use form the dropdown and click on Add Bookmark to place it in the template.

  1. Click on OK to save it.

    image-20240509-013505.png

HTML Email Templates via Mandrill

HTML Email templates are specified and created in Mandrill.

  1. Log in to Mandrill and go to the Dashboard > Outbound > Templates.

  2. Click on Create a Template.

    image-20240509-021913.png

  3. Enter Template Info.
    Please write down the Template Slug name for register it in the step 8.

  4. Provide an email design created with HTML and Bookmarks.
    To check which Bookmarks are available, go to Setup Configuration > Email Templates > Objects that you’re creating the template for > New > Template type > Bookmarks.

    image-20240602-233427.png

    1. To input a bookmark into a template, use two pairs of curly braces {{ }} with the name in the centre.
      For example, {{StudentNumber}}

      image-20240602-233830.png

    2. To input multiple values iterated through the same bookmark in a table format, define the block section using {{#each "grid name"}} {{/each}} and input the bookmarks that can be used within that grid in between.

      image-20240602-234133.png
Example
CODE
<div class="container" style="text-align: center;">		
    <h2 style=" color:white; background-color:#046283">Academic Results</h2><br>		
    <p><img src="http://equatorit.com/wp-content/uploads/2014/07/eit-logo1.png" alt="equatorit"/></p>
    <p align="left">{{date "d-m-Y"}}</p><br>
    <p align="left">Dear {{StudentFirstName}} {{StudentLastName}}, {{StudentNumber}}.</p><br>
    {{#if Results}}
    <p>Results</p>
	<table class="table table-bordered">
		<thead>
			<tr>
				<td>SubjectCode</td>
				<td>SubjectName</td>
				<td>VetResultName</td>
                <td>Mark</td>
                <td>End Date</td>
			</tr>
		</thead>
		<tbody>
            {{#each Results}}
                {{#if Mark}}
                <tr>
                    <td>{{SubjectCode}}</td>
                    <td>{{SubjectName}}</td>
                    <td>{{VetResultName}}</td>
                    <td>{{Mark}}</td>
                    <td>{{EndDate}}</td>
                </tr>
                {{/if}}
            {{/each}}
		</tbody>
	</table>
    {{/if}}
</div>

Mandrill's templates operate based on Handlebars.

By using Handlebars' built-in helper features, you can create more dynamic and powerful templates such as conditional block.
For more details, please visit to the following link: Mailchimp | Handlebars

  1. Click on Publish to save.

    image-20240509-021927.png

  2. To reference this template from within eBECAS/EDMISS,
    go to Utilities > Setup Configuration > Email Templates > your desired object.

  3. Click on New and select Template as type.

  4. Enter the details for the new template.

    1. Location : Specify the location that this template is used on. Leave empty for global location use.

    2. Name : Set a name for this template.

    3. API Slug Name : Fill the Mandrill API Slug name specified in Mandrill.

    4. Description : Set a description for this template.

    5. Email Subject : Set the subject of the email to be sent through the template.

    6. Use User for From Details : Select it to automatically use the current user's name and email address as the sender's name and email address for the email to be sent through the template.

    7. From Name : Set the sender's name for the email to be sent through the template. This field will be disabled if you use the User for From Details option.

    8. From Email : Set the sender's email address for the email to be sent through the template. This field will be disabled if you use the User for From Details option.

    9. Category : Set the default category for the email to be sent through the template.

  5. Select the bookmarks that used in the HTML template in Mandrill.

Please avoid selecting all as the retrieved data can be extensive.

Mandrill may fail to work if too much data is provided for each email.

  1. Click on OK to save it.

    image-20240509-021938.png

Send Emails

Send Single Email

Single Emails can be sent to a student, agent or homestay provider from the details page. For example from the student details page, follow the below steps:

  1. Click on Send Email in the side menu.

    image-20240509-050006.png

  2. Select recipients' email addresses to receive the email:

    • Local Student email address, Other Student email address

    • The Student’s agent’s general email, the agent’s nominated counsellor

    • An internal College eBECAS/EDMISS user blind copy address

    • Any other blind copy email address

  3. Select sender’s email address.

  4. Set options for this email.

    1. Date: The sent email will be logged in the student diary, and the Date and Time will automatically be set as the sent date. If the entry is about an event in the past or is intended as a future reminder, change the date/time to the desired date.

    2. Post to Student PortalSTUDENT OBJECT ONLY Check this option to publish this email to the student portal. Students can receive and read this through the student portal.

    3. Category: You can choose the category for classifying this email.

    4. Subject: Set the subject for the email.

    5. Notes: Enter the content for the email.

  5. (Optional) Select a registered Word Merge template in this area to attach a pdf generated from a Microsoft Word Template in the email.

  6. (Optional) Attach a separate file using the Attach File option.

  7. Click on OK to send the email.

  8. Details are logged in the Contact/Diary for each student or agent or homestay provider.

    Snag_1595e8d.png

Send Bulk Emails

  1. Go to the search window of the desired object and search for the records you wish to send emails to.

  2. Click on Merge in the side menu, and the Merge column is displayed on the grid.

  3. Select the records you want to send the email to (you can filter the grid by any field – right click the column title bar)

  4. Click on Bulk Email in Merge menu.

  5. Select options for this email.

    1. Message To: Select the recipient for this email. The type of recipient varies depending on the object.

    2. Include Flywire Payment Link ENROLMENT OBJECT ONLY : Select this option if you want to include payment link into the email through the payment link bookmark.

    3. Override Student Email Default: Choose the recipient’s default email address for receiving this email.

  6. Select a Email template for this email.

  7. Click on Email Merge to send it.

  8. Details are logged in the Contact/Diary for each student or agent or homestay provider.

    Snag_1938852.png

JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.