Merge branch '11.0' of git@github.com:Dolibarr/dolibarr.git into develop
This commit is contained in:
commit
81f289619d
@ -499,9 +499,11 @@ if (!$error && $massaction == 'confirm_presend')
|
|||||||
//var_dump($trackid);exit;
|
//var_dump($trackid);exit;
|
||||||
//var_dump($subjectreplaced);
|
//var_dump($subjectreplaced);
|
||||||
|
|
||||||
|
if (empty($sendcontext)) $sendcontext = 'standard';
|
||||||
|
|
||||||
// Send mail (substitutionarray must be done just before this)
|
// Send mail (substitutionarray must be done just before this)
|
||||||
require_once DOL_DOCUMENT_ROOT.'/core/class/CMailFile.class.php';
|
require_once DOL_DOCUMENT_ROOT.'/core/class/CMailFile.class.php';
|
||||||
$mailfile = new CMailFile($subjectreplaced, $sendto, $from, $messagereplaced, $filepath, $mimetype, $filename, $sendtocc, $sendtobcc, $deliveryreceipt, -1, '', '', $trackid);
|
$mailfile = new CMailFile($subjectreplaced, $sendto, $from, $messagereplaced, $filepath, $mimetype, $filename, $sendtocc, $sendtobcc, $deliveryreceipt, -1, '', '', $trackid, '', $sendcontext);
|
||||||
if ($mailfile->error)
|
if ($mailfile->error)
|
||||||
{
|
{
|
||||||
$resaction .= '<div class="error">'.$mailfile->error.'</div>';
|
$resaction .= '<div class="error">'.$mailfile->error.'</div>';
|
||||||
|
|||||||
@ -125,7 +125,7 @@ class FormTicket
|
|||||||
* Show the form to input ticket
|
* Show the form to input ticket
|
||||||
*
|
*
|
||||||
* @param int $withdolfichehead With dol_fiche_head
|
* @param int $withdolfichehead With dol_fiche_head
|
||||||
* @param string Mode ('create' or 'edit')
|
* @param string $mode Mode ('create' or 'edit')
|
||||||
* @return void
|
* @return void
|
||||||
*/
|
*/
|
||||||
public function showForm($withdolfichehead = 0, $mode = 'edit')
|
public function showForm($withdolfichehead = 0, $mode = 'edit')
|
||||||
|
|||||||
@ -1809,7 +1809,7 @@ function email_admin_prepare_head()
|
|||||||
if ($conf->mailing->enabled)
|
if ($conf->mailing->enabled)
|
||||||
{
|
{
|
||||||
$head[$h][0] = DOL_URL_ROOT."/admin/mails_emailing.php";
|
$head[$h][0] = DOL_URL_ROOT."/admin/mails_emailing.php";
|
||||||
$head[$h][1] = $langs->trans("OutGoingEmailSetupForEmailing");
|
$head[$h][1] = $langs->trans("OutGoingEmailSetupForEmailing", $langs->transnoentitiesnoconv("EMailing"));
|
||||||
$head[$h][2] = 'common_emailing';
|
$head[$h][2] = 'common_emailing';
|
||||||
$h++;
|
$h++;
|
||||||
}
|
}
|
||||||
|
|||||||
@ -164,7 +164,7 @@ NoContactWithCategoryFound=No contact/address with a category found
|
|||||||
NoContactLinkedToThirdpartieWithCategoryFound=No contact/address with a category found
|
NoContactLinkedToThirdpartieWithCategoryFound=No contact/address with a category found
|
||||||
OutGoingEmailSetup=Outgoing email setup
|
OutGoingEmailSetup=Outgoing email setup
|
||||||
InGoingEmailSetup=Incoming email setup
|
InGoingEmailSetup=Incoming email setup
|
||||||
OutGoingEmailSetupForEmailing=Outgoing email setup (for mass emailing)
|
OutGoingEmailSetupForEmailing=Outgoing email setup (for module %s)
|
||||||
DefaultOutgoingEmailSetup=Default outgoing email setup
|
DefaultOutgoingEmailSetup=Default outgoing email setup
|
||||||
Information=Information
|
Information=Information
|
||||||
ContactsWithThirdpartyFilter=Contacts with third-party filter
|
ContactsWithThirdpartyFilter=Contacts with third-party filter
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user