package LSweb::Database::Email; use strict; use base qw(LSweb::DBI); use Apache::Reload; __PACKAGE__->table('email'); __PACKAGE__->columns(All => qw/id from to name subject content datetime/); __PACKAGE__->set_sql(all => 'SELECT __ESSENTIAL__ FROM __TABLE__'); 1;