dolibarr 21.0.0-beta
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 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 3 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program. If not, see <https://www.gnu.org/licenses/>.
18 */
19
26//if (! defined('NOREQUIREUSER')) define('NOREQUIREUSER', '1'); // Not disabled cause need to load personalized language
27//if (! defined('NOREQUIREDB')) define('NOREQUIREDB', '1'); // Not disabled cause need to load personalized language
28//if (! defined('NOREQUIRESOC')) define('NOREQUIRESOC', '1');
29//if (! defined('NOREQUIRETRAN')) define('NOREQUIRETRAN', '1');
30if (!defined('NOTOKENRENEWAL')) {
31 define('NOTOKENRENEWAL', '1');
32}
33if (!defined('NOREQUIREMENU')) {
34 define('NOREQUIREMENU', '1');
35}
36if (!defined('NOREQUIREHTML')) {
37 define('NOREQUIREHTML', '1');
38}
39if (!defined('NOREQUIREAJAX')) {
40 define('NOREQUIREAJAX', '1');
41}
42
43// Load Dolibarr environment
44require '../main.inc.php'; // Load $user and permissions
45require_once DOL_DOCUMENT_ROOT.'/core/lib/company.lib.php';
46require_once DOL_DOCUMENT_ROOT.'/compta/facture/class/facture.class.php';
47
55$facid = GETPOSTINT('facid');
56$action = GETPOST('action', 'aZ09');
57$email = GETPOST('email', 'alpha');
58
59if (!$user->hasRight('takepos', 'run')) {
61}
62
63$langs->loadLangs(array("main", "bills", "cashdesk"));
64
65$invoice = new Facture($db);
66$invoice->fetch($facid);
67$customer = new Societe($db);
68$customer->fetch($invoice->socid);
69
70
71/*
72 * Actions
73 */
74
75if ($action == "send" && $user->hasRight('takepos', 'run')) {
76 include_once DOL_DOCUMENT_ROOT.'/core/class/CMailFile.class.php';
77 include_once DOL_DOCUMENT_ROOT.'/core/class/html.formmail.class.php';
78 $formmail = new FormMail($db);
79 $outputlangs = new Translate('', $conf);
80 $model_id = getDolGlobalString('TAKEPOS_EMAIL_TEMPLATE_INVOICE');
81 $arraydefaultmessage = $formmail->getEMailTemplate($db, 'facture_send', $user, $outputlangs, $model_id);
82 $subject = $arraydefaultmessage->topic;
83
84 ob_start(); // turn on output receipt
85 include DOL_DOCUMENT_ROOT.'/takepos/receipt.php';
86 $receipt = ob_get_contents(); // get the contents of the output buffer
87 ob_end_clean();
88
89 $msg = "<html>".$arraydefaultmessage->content."<br>".$receipt."</html>";
90 $sendto = $email;
91 $from = $mysoc->email;
92 $mail = new CMailFile($subject, $sendto, $from, $msg, array(), array(), array(), '', '', 0, 1, '', '', '', '', '', '', DOL_DOCUMENT_ROOT.'/documents/takepos/temp');
93 if ($mail->error || !empty($mail->errors)) {
94 setEventMessages($mail->error, $mail->errors, 'errors');
95 } else {
96 $result = $mail->sendfile();
97 }
98 exit;
99}
100
101
102/*
103 * View
104 */
105
106$arrayofcss = array('/takepos/css/pos.css.php');
107$arrayofjs = array();
108$head = '';
109top_htmlhead($head, '', 0, 0, $arrayofjs, $arrayofcss);
110
111?>
112<body class="center">
113
114<script>
115function SendMail() {
116 $.ajax({
117 type: "GET",
118 data: { token: '<?php echo currentToken(); ?>' },
119 url: "<?php print DOL_URL_ROOT.'/takepos/send.php?action=send&token='.newToken().'&facid='.$facid.'&email='; ?>" + $("#email"). val(),
120 });
121 parent.$.colorbox.close();
122}
123
124</script>
125
126<div class="center">
127<center>
128<center>
129<input type="email" id="email" name="email" style="width:60%;font-size: 200%;" value="<?php echo $customer->email; ?>"></center>
130</center>
131</div>
132<br>
133<div class="center">
134
135<button type="button" class="calcbutton" onclick="SendMail()"><?php print $langs->trans("SendTicket"); ?></button>
136
137</div>
138
139</body>
140</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.
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
getDolGlobalString($key, $default='')
Return a Dolibarr global constant string value.
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:/i', $dolibarr_main_db_pass)||!empty($dolibarr_main_db_encrypted_pass)) $conf db type
Definition repair.php:149
$conf db name
Only used if Module[ID]Name translation string is not found.
Definition repair.php:152
accessforbidden($message='', $printheader=1, $printfooter=1, $showonlymessage=0, $params=null)
Show a message to say access is forbidden and stop program.