Added missing dependencies.
This commit is contained in:
parent
8001f33bed
commit
3deab86677
2 changed files with 5 additions and 0 deletions
|
|
@ -5,6 +5,7 @@ use warnings;
|
||||||
|
|
||||||
use HTML::TreeBuilder;
|
use HTML::TreeBuilder;
|
||||||
use WebGUI::HTML;
|
use WebGUI::HTML;
|
||||||
|
use WebGUI::Mailing::Bounce;
|
||||||
|
|
||||||
use base 'WebGUI::Crud';
|
use base 'WebGUI::Crud';
|
||||||
|
|
||||||
|
|
@ -66,6 +67,7 @@ sub getMailing {
|
||||||
my $self = shift;
|
my $self = shift;
|
||||||
my $session = $self->session;
|
my $session = $self->session;
|
||||||
|
|
||||||
|
require WebGUI::Mailing;
|
||||||
my $mailing = WebGUI::Mailing->new( $session, $self->get('mailingId') );
|
my $mailing = WebGUI::Mailing->new( $session, $self->get('mailingId') );
|
||||||
#### TODO: error checking;
|
#### TODO: error checking;
|
||||||
return $mailing;
|
return $mailing;
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,8 @@
|
||||||
package WebGUI::Workflow::Activity::SendQueuedMailings;
|
package WebGUI::Workflow::Activity::SendQueuedMailings;
|
||||||
|
|
||||||
|
use WebGUI::Mailing;
|
||||||
|
use WebGUI::Mailing::Email;
|
||||||
|
|
||||||
use base 'WebGUI::Workflow::Activity';
|
use base 'WebGUI::Workflow::Activity';
|
||||||
|
|
||||||
#-------------------------------------------------------------------
|
#-------------------------------------------------------------------
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue