this message appears every time in the fifth step of campaign wizard
You cannot send a marketing email until your subscription list has at least one entry. You can populate your list after finishing.
and my target list is not empty
so follow the error in the code
in wizardMarketing.php you put this if
$pl_count = $default_pl_focus->get_entry_count();
and when you go to the prospectList.php
in get_entry_count() function you wrote the query
SELECT count(*) AS num FROM prospect_lists_prospects WHERE prospect_list_id=’$this->id’ AND deleted = ‘0’"
but in the database tables there is not any table got this name prospect_lists_prospects
and in the wizardmarketing.php
the $pl_count still = 0
if ($pl_count == ‘0’){
}
else {
}
the else is empty so how will it proceed
i am looking forward your answer
thanks