dolibarr 22.0.5
send.php
Go to the documentation of this file.
1<?php
2/* Copyright (C) 2019 Thibault FOUCART <support@ptibogxiv.net>
3 * Copyright (C) 2020 Andreu Bisquerra Gaya <jove@bisquerra.com>
4 * Copyright (C) 2024 Frédéric France <frederic.france@free.fr>
5 * Copyright (C) 2025 MDW <mdeweerd@users.noreply.github.com>
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program. If not, see <https://www.gnu.org/licenses/>.
19 */
20
27//if (! defined('NOREQUIREUSER')) define('NOREQUIREUSER', '1'); // Not disabled cause need to load personalized language
28//if (! defined('NOREQUIREDB')) define('NOREQUIREDB', '1'); // Not disabled cause need to load personalized language
29//if (! defined('NOREQUIRESOC')) define('NOREQUIRESOC', '1');
30//if (! defined('NOREQUIRETRAN')) define('NOREQUIRETRAN', '1');
31if (!defined('NOTOKENRENEWAL')) {
32 define('NOTOKENRENEWAL', '1');
33}
34if (!defined('NOREQUIREMENU')) {
35 define('NOREQUIREMENU', '1');
36}
37if (!defined('NOREQUIREHTML')) {
38 define('NOREQUIREHTML', '1');
39}
40if (!defined('NOREQUIREAJAX')) {
41 define('NOREQUIREAJAX', '1');
42}
43
44// Load Dolibarr environment
45require '../main.inc.php'; // Load $user and permissions
46require_once DOL_DOCUMENT_ROOT.'/core/lib/company.lib.php';
47require_once DOL_DOCUMENT_ROOT.'/compta/facture/class/facture.class.php';
48
56$facid = GETPOSTINT('facid');
57$action = GETPOST('action', 'aZ09');
58$email = GETPOST('email', 'alpha');
59
60if (!$user->hasRight('takepos', 'run')) {
62}
63
64$langs->loadLangs(array("main", "bills", "cashdesk"));
65
66$invoice = new Facture($db);
67$invoice->fetch($facid);
68$customer = new Societe($db);
69$customer->fetch($invoice->socid);
70
71
72/*
73 * Actions
74 */
75
76if ($action == "send" && $user->hasRight('takepos', 'run')) {
77 include_once DOL_DOCUMENT_ROOT.'/core/class/CMailFile.class.php';
78 include_once DOL_DOCUMENT_ROOT.'/core/class/html.formmail.class.php';
79 $formmail = new FormMail($db);
80 $outputlangs = new Translate('', $conf);
81 $model_id = getDolGlobalInt('TAKEPOS_EMAIL_TEMPLATE_INVOICE');
82 $arraydefaultmessage = $formmail->getEMailTemplate($db, 'facture_send', $user, $outputlangs, $model_id);
83 $subject = $arraydefaultmessage->topic;
84
85 ob_start(); // turn on output receipt
86 include DOL_DOCUMENT_ROOT.'/takepos/receipt.php';
87 $receipt = ob_get_contents(); // get the contents of the output buffer
88 ob_end_clean();
89
90 $msg = "<html>".$arraydefaultmessage->content."<br>".$receipt."</html>";
91 $sendto = $email;
92 $from = $mysoc->email;
93 $mail = new CMailFile($subject, $sendto, $from, $msg, array(), array(), array(), '', '', 0, 1, '', '', '', '', '', '', DOL_DATA_ROOT.'/documents/takepos/temp');
94 if ($mail->error || !empty($mail->errors)) {
95 setEventMessages($mail->error, $mail->errors, 'errors');
96 } else {
97 $result = $mail->sendfile();
98 }
99 exit;
100}
101
102
103/*
104 * View
105 */
106
107$arrayofcss = array('/takepos/css/pos.css.php');
108$arrayofjs = array();
109$head = '';
110top_htmlhead($head, '', 0, 0, $arrayofjs, $arrayofcss);
111
112?>
113<body class="center">
114
115<script>
116function SendMail() {
117 $.ajax({
118 type: "GET",
119 data: { token: '<?php echo currentToken(); ?>' },
120 url: "<?php print DOL_URL_ROOT.'/takepos/send.php?action=send&token='.newToken().'&facid='.$facid.'&email='; ?>" + $("#email"). val(),
121 });
122 parent.$.colorbox.close();
123}
124
125</script>
126
127<div class="center">
128<center>
129<center>
130<input type="email" id="email" name="email" style="width:60%;font-size: 200%;" value="<?php echo $customer->email; ?>"></center>
131</center>
132</div>
133<br>
134<div class="center">
135
136<button type="button" class="calcbutton" onclick="SendMail()"><?php print $langs->trans("SendTicket"); ?></button>
137
138</div>
139
140</body>
141</html>
Class to send emails (with attachments or not) Usage: $mailfile = new CMailFile($subject,...
Class to manage invoices.
Class permettant la generation du formulaire html d'envoi de mail unitaire Usage: $formail = new Form...
Class to manage third parties objects (customers, suppliers, prospects...)
Class to manage translations.
setEventMessages($mesg, $mesgs, $style='mesgs', $messagekey='', $noduplicate=0, $attop=0)
Set event messages in dol_events session object.
GETPOSTINT($paramname, $method=0)
Return the value of a $_GET or $_POST supervariable, converted into integer.
getDolGlobalInt($key, $default=0)
Return a Dolibarr global constant int value.
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
ui state ui widget content ui state ui widget header ui state a ui button
0 = Do not include form tag and submit button -1 = Do not include form tag but include submit button
top_htmlhead($head, $title='', $disablejs=0, $disablehead=0, $arrayofjs=array(), $arrayofcss=array(), $disableforlogin=0, $disablenofollow=0, $disablenoindex=0)
Output html header of a page.
global $conf
The following vars must be defined: $type2label $form $conf, $lang, The following vars may also be de...
Definition member.php:79
if(preg_match('/(crypted|dolcrypt):/i', $dolibarr_main_db_pass)||!empty($dolibarr_main_db_encrypted_pass)) $conf db type
Definition repair.php:158
$conf db name
Only used if Module[ID]Name translation string is not found.
Definition repair.php:161
accessforbidden($message='', $printheader=1, $printfooter=1, $showonlymessage=0, $params=null)
Show a message to say access is forbidden and stop program.