async fn post_new_email_template(
    course_instance_id: Path<Uuid>,
    payload: Json<EmailTemplateNew>,
    pool: Data<PgPool>,
    user: AuthUser
) -> ControllerResult<Json<EmailTemplate>>