Sailthru_Client::processImportJob PHP 메소드

processImportJob() 공개 메소드

Process import job from given email string CSV
public processImportJob ( String $list, String $emails, boolean | String $report_email = false, boolean | String $postback_url = false, array $options = [] ) : array
$list String
$emails String
$report_email boolean | String
$postback_url boolean | String
$options array
리턴 array
    public function processImportJob($list, $emails, $report_email = false, $postback_url = false, array $options = [])
    {
        $data = ['emails' => $emails, 'list' => $list];
        return $this->processJob('import', $data, $report_email, $postback_url, [], $options);
    }