28if (!defined(
'NOSESSION')) {
29 define(
'NOSESSION',
'1');
32$sapi_type = php_sapi_name();
33$script_file = basename(__FILE__);
37$sapi_type = php_sapi_name();
38if (substr($sapi_type, 0, 3) ==
'cgi') {
39 echo
"Error: You are using PHP for CGI. To execute ".$script_file.
" from command line, you must use PHP for CLI mode.\n";
43if (!isset($argv[1]) || !$argv[1] || !in_array($argv[1], array(
'test',
'confirm')) || !in_array($argv[2], array(
'thirdparties',
'contacts'))) {
44 print
"Usage: $script_file (test|confirm) (thirdparties|contacts) [delay] [after]\n";
46 print
"Send an email to customers to remind all contracts services to expire or expired.\n";
47 print
"If you choose 'test' mode, no emails are sent.\n";
48 print
"If you add param delay (nb of days), only services with expired date < today + delay are included.\n";
49 print
"If you add param after (nb of days), only services with expired date >= today + delay are included.\n";
53$targettype = $argv[2];
55require $path.
"../../htdocs/master.inc.php";
56require_once DOL_DOCUMENT_ROOT.
"/core/class/CMailFile.class.php";
58$langs->loadLangs(array(
'main',
'contracts'));
61$version = DOL_VERSION;
69print
"***** ".$script_file.
" (".$version.
") pid=".
dol_getmypid().
" *****\n";
70dol_syslog($script_file.
" launched with arg ".join(
',', $argv));
73$duration_value = isset($argv[3]) ? $argv[3] :
'none';
74$duration_value2 = isset($argv[4]) ? $argv[4] :
'none';
77print $script_file.
" launched with mode ".$mode.
" default lang=".$langs->defaultlang.(is_numeric($duration_value) ?
" delay=".$duration_value :
"").(is_numeric($duration_value2) ?
" after=".$duration_value2 :
"").
"\n";
79if ($mode !=
'confirm') {
80 $conf->global->MAIN_DISABLE_ALL_MAILS = 1;
83$sql =
"SELECT c.ref, cd.date_fin_validite, cd.total_ttc, cd.description as description, p.label as plabel,";
84$sql .=
" s.rowid as sid, s.nom as name, s.email, s.default_lang";
85if ($targettype ==
'contacts') {
86 $sql .=
", sp.rowid as cid, sp.firstname as cfirstname, sp.lastname as clastname, sp.email as cemail";
88$sql .=
" FROM ".MAIN_DB_PREFIX.
"societe AS s";
89if ($targettype ==
'contacts') {
90 $sql .=
", ".MAIN_DB_PREFIX.
"socpeople as sp";
92$sql .=
", ".MAIN_DB_PREFIX.
"contrat AS c";
93$sql .=
", ".MAIN_DB_PREFIX.
"contratdet AS cd";
94$sql .=
" LEFT JOIN ".MAIN_DB_PREFIX.
"product AS p ON p.rowid = cd.fk_product";
95$sql .=
" WHERE s.rowid = c.fk_soc AND c.rowid = cd.fk_contrat AND c.statut > 0 AND cd.statut < 5";
96if (is_numeric($duration_value2)) {
97 $sql .=
" AND cd.date_fin_validite >= '".$db->idate(
dol_time_plus_duree($now, $duration_value2,
"d")).
"'";
99if (is_numeric($duration_value)) {
100 $sql .=
" AND cd.date_fin_validite < '".$db->idate(
dol_time_plus_duree($now, $duration_value,
"d")).
"'";
102if ($targettype ==
'contacts') {
103 $sql .=
" AND s.rowid = sp.fk_soc";
106if ($targettype ==
'contacts') {
107 $sql .=
" sp.email, sp.rowid,";
109$sql .=
" s.email ASC, s.rowid ASC, cd.date_fin_validite ASC";
112$resql = $db->query($sql);
114 $num = $db->num_rows($resql);
122 $trackthirdpartiessent = array();
124 print
"We found ".$num.
" couples (services to expire-".$targettype.
") qualified\n";
125 dol_syslog(
"We found ".$num.
" couples (services to expire-".$targettype.
") qualified");
131 $obj = $db->fetch_object($resql);
133 $newemail = empty($obj->cemail) ? $obj->email : $obj->cemail;
137 if ($newemail != $oldemail || $oldemail ==
'none') {
140 if ($obj->sid && $obj->sid != $oldsid) {
143 if ($targettype ==
'contacts') {
144 if ($obj->cid && $obj->cid != $oldcid) {
151 if (
dol_strlen($oldemail) && $oldemail !=
'none' && empty($trackthirdpartiessent[$oldsid.
'|'.$oldemail])) {
152 sendEmailTo($mode, $oldemail, $message, $total, $oldlang, $oldtarget, $duration_value);
153 $trackthirdpartiessent[$oldsid.
'|'.$oldemail] =
'contact id '.$oldcid;
155 if ($oldemail !=
'none') {
156 if (empty($trackthirdpartiessent[$oldsid.
'|'.$oldemail])) {
157 print
"- No email sent for '".$oldtarget.
"', total: ".$total.
"\n";
159 print
"- No email sent for '".$oldtarget.
"', total: ".$total.
" (already sent to ".$trackthirdpartiessent[$oldsid.
'|'.$oldemail].
")\n";
163 $oldemail = $newemail;
165 if ($targettype ==
'contacts') {
168 $oldlang = $obj->default_lang;
169 $oldtarget = (empty($obj->cfirstname) && empty($obj->clastname)) ? $obj->name : ($obj->clastname.
" ".$obj->cfirstname);
178 $outputlangs->setDefaultLang(empty($obj->default_lang) ? $langs->defaultlang : $obj->default_lang);
181 $outputlangs->loadLangs(array(
"main",
"contracts",
"bills",
"products"));
184 $message .= $outputlangs->trans(
"Contract").
" ".$obj->ref.
": ".$outputlangs->trans(
"Service").
" ".
dol_concatdesc($obj->plabel, $obj->description).
" (".
price($obj->total_ttc, 0, $outputlangs, 0, 0, -1, $conf->currency).
"), ".$outputlangs->trans(
"DateEndPlannedShort").
" ".
dol_print_date($db->jdate($obj->date_fin_validite),
'day').
"\n\n";
185 dol_syslog(
"email_expire_services_to_customers.php: ".$newemail.
" ".$message);
188 print
"Service to expire ".$obj->ref.
", label ".
dol_concatdesc($obj->plabel, $obj->description).
", due date ".
dol_print_date($db->jdate($obj->date_fin_validite),
'day').
", customer id ".$obj->sid.
" ".$obj->name.
", ".(isset($obj->cid) ?
"contact id ".$obj->cid.
" ".$obj->clastname.
" ".$obj->cfirstname.
", " :
"").
"email ".$newemail.
", lang ".$outputlangs->defaultlang.
": ";
192 print
"disqualified (no email).";
198 $total += $obj->total_ttc;
204 if ($foundtoprocess) {
205 if (
dol_strlen($oldemail) && $oldemail !=
'none' && empty($trackthirdpartiessent[$oldsid.
'|'.$oldemail])) {
206 sendEmailTo($mode, $oldemail, $message, $total, $oldlang, $oldtarget, $duration_value);
207 $trackthirdpartiessent[$oldsid.
'|'.$oldemail] =
'contact id '.$oldcid;
209 if ($oldemail !=
'none') {
210 if (empty($trackthirdpartiessent[$oldsid.
'|'.$oldemail])) {
211 print
"- No email sent for '".$oldtarget.
"', total: ".$total.
"\n";
213 print
"- No email sent for '".$oldtarget.
"', total: ".$total.
" (already sent to ".$trackthirdpartiessent[$oldsid.
'|'.$oldemail].
")\n";
219 print
"No services to expire found\n";
225 dol_syslog(
"email_expire_services_to_customers.php: Error");
242function sendEmailTo($mode, $oldemail, $message, $total, $userlang, $oldtarget, $duration_value)
244 global $conf, $langs;
246 if (getenv(
'DOL_FORCE_EMAIL_TO')) {
247 $oldemail = getenv(
'DOL_FORCE_EMAIL_TO');
251 $newlangs->setDefaultLang(empty($userlang) ?
getDolGlobalString(
'MAIN_LANG_DEFAULT',
'auto') : $userlang);
252 $newlangs->load(
"main");
253 $newlangs->load(
"contracts");
255 if ($duration_value) {
256 if ($duration_value > 0) {
257 $title = $newlangs->transnoentities(
"ListOfServicesToExpireWithDuration", $duration_value);
259 $title = $newlangs->transnoentities(
"ListOfServicesToExpireWithDurationNeg", $duration_value);
262 $title = $newlangs->transnoentities(
"ListOfServicesToExpire");
265 $subject =
getDolGlobalString(
'SCRIPT_EMAIL_EXPIRE_SERVICES_CUSTOMERS_SUBJECT', $title);
271 print
"- Send email to '".$oldtarget.
"' (".$oldemail.
"), total: ".$total.
"\n";
272 dol_syslog(
"email_expire_services_to_customers.php: send mail to ".$oldemail);
286 $allmessage .=
"Dear customer".($usehtml ?
"<br>\n" :
"\n").($usehtml ?
"<br>\n" :
"\n");
287 $allmessage .=
"Please, find a summary of the services contracted by you that are about to expire.".($usehtml ?
"<br>\n" :
"\n").($usehtml ?
"<br>\n" :
"\n");
289 $allmessage .= $message.($usehtml ?
"<br>\n" :
"\n");
298 $mail =
new CMailFile($subject, $sendto, $from, $allmessage, array(), array(), array(),
'',
'', 0, $msgishtml);
300 $mail->errors_to = $errorsto;
303 if ($mode ==
'confirm') {
304 $result = $mail->sendfile();
306 print
"Error sending email ".$mail->error.
"\n";
307 dol_syslog(
"Error sending email ".$mail->error.
"\n");
310 print
"No email sent (test mode)\n";
Class to send emails (with attachments or not) Usage: $mailfile = new CMailFile($subject,...
Class to manage translations.
dol_time_plus_duree($time, $duration_value, $duration_unit, $ruleforendofmonth=0)
Add a delay to a date.
sendEmailTo($mode, $oldemail, $message, $total, $userlang, $oldtarget, $duration_value)
Send email.
dol_getmypid()
Return getmypid() or random PID when function is disabled Some web hosts disable this php function fo...
dol_print_error($db='', $error='', $errors=null)
Displays error message system with all the information to facilitate the diagnosis and the escalation...
dol_strlen($string, $stringencoding='UTF-8')
Make a strlen call.
price($amount, $form=0, $outlangs='', $trunc=1, $rounding=-1, $forcerounding=-1, $currency_code='')
Function to format a value into an amount for visual output Function used into PDF and HTML pages.
dol_print_date($time, $format='', $tzoutput='auto', $outputlangs='', $encodetooutput=false)
Output date in a string format according to outputlangs (or langs if not defined).
dol_now($mode='auto')
Return date for now.
dol_concatdesc($text1, $text2, $forxml=false, $invert=false)
Concat 2 descriptions with a new line between them (second operand after first one with appropriate n...
dol_textishtml($msg, $option=0)
Return if a text is a html content.
getDolGlobalString($key, $default='')
Return dolibarr global constant string value.
dol_syslog($message, $level=LOG_INFO, $ident=0, $suffixinfilename='', $restricttologhandler='', $logcontext=null)
Write log message into outputs.