Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Email Templating #517

Open
alexlai18 opened this issue Aug 9, 2024 · 1 comment
Open

Email Templating #517

alexlai18 opened this issue Aug 9, 2024 · 1 comment
Assignees
Labels
A: Backend Backend related issues A: Frontend Frontend related issues

Comments

@alexlai18
Copy link

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

This ticket will involve:

  • CRUD operations on the backend
  • Frontend utility function to convert textbox input into HTML text
@KavikaPalletenne
Copy link
Contributor

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
)

@KavikaPalletenne KavikaPalletenne added A: Frontend Frontend related issues A: Backend Backend related issues labels Sep 30, 2024
@KavikaPalletenne KavikaPalletenne added this to the Backend Rewrite milestone Sep 30, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
A: Backend Backend related issues A: Frontend Frontend related issues
Projects
None yet
Development

No branches or pull requests

4 participants