Sailthru_Client::scheduleBlastFromTemplate PHP Method

scheduleBlastFromTemplate() public method

Schedule a mass mail from a template
public scheduleBlastFromTemplate ( String $template, String $list, String $schedule_time, array $options = [] ) : array
$template String
$list String
$schedule_time String
$options array
return array API result
    public function scheduleBlastFromTemplate($template, $list, $schedule_time, $options = [])
    {
        $data = $options;
        $data['copy_template'] = $template;
        $data['list'] = $list;
        $data['schedule_time'] = $schedule_time;
        return $this->apiPost('blast', $data);
    }