Note: You are currently viewing documentation for Moodle 1.9. Up-to-date documentation for the latest stable version is available here: Quickmail block.

Talk:Quickmail block

From MoodleDocs

Hello, we've installed Quickmail in a Moodle using PostgreSQL. We've used the following command to manually create the log table:

create table mdl_block_quickmail_log (

 id serial primary key,
 courseid integer not null default '0',
 userid integer not null default '0',
 mailto text not null default ,
 subject varchar(255) not null default ,
 message text not null default ,
 attachment varchar(255) not null default ,
 format int4 not null default '1',
 timesent integer not null default '0'

);

Rubens Takiguti Ribeiro