wiki:group_email

Version 16 (modified by Taehyun You, 13 years ago) ( diff )

--

Group Email

Refer to ticket #52

Requirements

The instructor (or admin) should be able to send a group email

A group can be:

  • Students registered in a course
  • Group members in a group
  • Each student

Optional:

  • User can use and edit his/her own email template
    • Ownership such as private, public, or shared among some group
  • Email merge system, so template can have fields for variables
  • Allowing a user to see and copy group email addresses, so he/she can use a preferred email client

Implementation

Getting email address

"send email" button on:

  1. each type of page email addresses for 'to' field would be students who belongs to the type of page, for example
    1. all student if sent from course homepage
    2. all group member if sent from group view page
    3. student if sent from user view page
  2. users tab page
    • email address of users are currently listed on the page.
      • currently having problem with ajaxlist to update Group filter by changing Course filter

Database Table

  • Create custom_emails:

CREATE TABLE custom_emails (

id int(11) NOT NULL auto_increment,

name varchar(80) NOT NULL,

description text NOT NULL,

content text NOT NULL,

availability tinyint(4) NOT NULL,

creator_id int(11) NOT NULL default '0',

created date NOT NULL default '0000-00-00',

updater_id int(11) default NULL,

updated date default NULL,

PRIMARY KEY (id)

) ENGINE=InnoDB DEFAULT CHARSET=latin1;

  • Insert into sys_functions

INSERT INTO sys_functions (id, function_code, function_name, parent_id, controller_name, url_link, permission_type, record_status, creator_id, created, updater_id, modified)

VALUES (1700, 'EMAIL_TEMPLATE', 'Email Template', 0, 'emailer', 'emailer/index', 'AI', 'A', 0, '0000-00-00 00:00:00', NULL, NULL);

Attachments (1)

Download all attachments as: .zip

Note: See TracWiki for help on using the wiki.