devsoc-unsw / chaos

The eventual repository for the CHAOS Hiring and Offers System - used to manage sending and receiving of applications, interviews and results.
https://chaos.csesoc.app
Other
24 stars 5 forks source link

Email Templating #517

Open alexlai18 opened 2 months ago

alexlai18 commented 2 months ago

Implement the ability for organisations to have their own Email Templates, with adjustable variables to send to the applicants.

This ticket will involve:

KavikaPalletenne commented 1 month ago

Store email templates (strings) in DB, with a relation to an organisation.

i.e. schema will look something like:

CREATE TABLE email_templates (
    id BIGINT PRIMARY KEY,
    organisation_id BIGINT NOT NULL,
    template_name TEXT NOT NULL,
    template TEXT NOT NULL
)