Merge pull request #11915 from frederic34/patch-12
Update CMailFile.class.php
This commit is contained in:
commit
ed99b71df4
@ -80,6 +80,18 @@ class CMailFile
|
|||||||
|
|
||||||
public $headers;
|
public $headers;
|
||||||
public $message;
|
public $message;
|
||||||
|
/**
|
||||||
|
* @var array fullfilenames list
|
||||||
|
*/
|
||||||
|
public $filename_list = array();
|
||||||
|
/**
|
||||||
|
* @var array mimetypes of files list
|
||||||
|
*/
|
||||||
|
public $mimetype_list = array();
|
||||||
|
/**
|
||||||
|
* @var array filenames list
|
||||||
|
*/
|
||||||
|
public $mimefilename_list = array();
|
||||||
|
|
||||||
// Image
|
// Image
|
||||||
public $html;
|
public $html;
|
||||||
@ -125,6 +137,9 @@ class CMailFile
|
|||||||
global $conf, $dolibarr_main_data_root;
|
global $conf, $dolibarr_main_data_root;
|
||||||
|
|
||||||
$this->sendcontext = $sendcontext;
|
$this->sendcontext = $sendcontext;
|
||||||
|
$this->filename_list = $filename_list;
|
||||||
|
$this->mimetype_list = $mimetype_list;
|
||||||
|
$this->mimefilename_list = $mimefilename_list;
|
||||||
|
|
||||||
if (empty($replyto)) $replyto=$from;
|
if (empty($replyto)) $replyto=$from;
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user