1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
|
<?php
// All EasyGiant code is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
// See COPYRIGHT.txt and LICENSE.txt.
if (!defined('EG')) die('Direct access not allowed!');
//class to send an e-mail
class Email {
//sent to parameters (array)
private $_sendTo = array();
//cc parameters (array)
private $_cc = array();
//bcc parameters (array)
private $_bcc = array();
//the address of the sender
private $_from = null;
//subject (string)
private $_subject = null;
//charset
private $_charset = "iso-8859-1";
//Content-Transfer-Encoding
private $_ctencoding = "7bit";
//body
private $_body = '';
//headers
private $_headers = null;
//check flag. If _check = true than check the mail addresses
private $_check = null;
//regular expression to check each e-mail address
private $_addressRegExp = null;
//array containing all the errors encountered during the execution
public $errorsArray = array();
public function __construct($bool = true)
{
$this->_check = $bool;
}
//set the sentTo addresses array
//$addresses: array of e-mail addresses or a string
public function sendTo($addresses)
{
$this->_sendTo = explode(',',$addresses);
}
//set the subject
public function subject($subject)
{
$this->_subject = $subject;
}
//set the cc addresses array
//$addresses: array of e-mail addresses or a string
public function cc($addresses)
{
$this->_cc = explode(',',$addresses);
}
//set the bcc addresses array
//$addresses: array of e-mail addresses or a string
public function bcc($addresses)
{
$this->_bcc = explode(',',$addresses);
}
//set the address of the sender
public function from($address)
{
$this->_from = $address;
}
//set the charset
public function charset($charset)
{
$this->_charset = $charset;
}
//set the Content-Transfer-Encoding
public function ctencoding($ctencoding)
{
$this->_ctencoding = $ctencoding;
}
//set the text body
public function body($body)
{
$this->_body = $body;
}
//set the address regular expression
public function addressRegExp($regExp)
{
$this->_addressRegExp = $regExp;
}
//check if the mail address is valid
public function isValidAddress($address)
{
if( preg_match( '/^[^<>]*<(.+)>$/', $address, $matches ) )
{
$address = $matches[1];
}
if (isset($this->_addressRegExp))
{
if (preg_match($this->_addressRegExp,$address))
{
return true;
}
else
{
return false;
}
}
else
{
if (checkMail($address)) return true;
}
return false;
}
//check the addresses inside the $addresses array
public function checkAddresses($addresses)
{
foreach ($addresses as $address)
{
if(!$this->isValidAddress($address)) return false;
}
return true;
}
//build the mail
public function buildMail()
{
if (empty($this->_sendTo))
{
$this->errorsArray[] = 'no address specified';
return false;
}
if ($this->_check)
{
if (!$this->checkAddresses($this->_sendTo))
{
$this->errorsArray[] = 'errors in the sendTo address validation';
return false;
}
if (!empty($this->_cc))
{
if (!$this->checkAddresses($this->_cc))
{
$this->errorsArray[] = 'errors in the cc address validation';
return false;
}
}
if (!empty($this->_bcc))
{
if (!$this->checkAddresses($this->_bcc))
{
$this->errorsArray[] = 'errors in the bcc address validation';
return false;
}
}
if (isset($this->_from))
{
if (!$this->checkAddresses(array($this->_from)))
{
$this->errorsArray[] = 'errors in the from address validation';
return false;
}
}
}
if (strcmp($this->_subject,'') === 0)
{
$this->errorsArray[] = 'no subject specified';
return false;
}
$headers = null;
if (isset($this->_from)) $headers .= "From: ".$this->_from."\r\n";
$headers .= "MIME-Version: 1.0\r\n";
$headers .= "Content-Type: text/plain; charset=\"".$this->_charset."\"\r\n";
$headers .= "Content-Transfer-Encoding: ".$this->_ctencoding."\r\n";
if (!empty($this->_cc)) $headers .= "CC: ".implode(',',$this->_cc)."\r\n";
if (!empty($this->_bcc)) $headers .= "Bcc: ".implode(',',$this->_bcc)."\r\n";
$this->_headers = $headers;
return true;
}
public function send()
{
if (!$this->buildMail()) return false;
$to = implode(',',$this->_sendTo);
if (!@mail($to,$this->_subject,$this->_body,$this->_headers))
{
$this->errorsArray[] = 'error in the send process';
return false;
}
return true;
}
}
|