|
1
|
|
|
<?php |
|
2
|
|
|
/** |
|
3
|
|
|
* PHPMailer Plugin |
|
4
|
|
|
* |
|
5
|
|
|
* @package PHPMailer |
|
6
|
|
|
* @license Lesser General Public License (LGPL) |
|
7
|
|
|
* @author Cash Costello |
|
8
|
|
|
* @copyright Cash Costello 2008-2011 |
|
9
|
|
|
*/ |
|
10
|
|
|
|
|
11
|
|
|
|
|
12
|
|
|
elgg_register_event_handler('init', 'system', 'phpmailer_init'); |
|
13
|
|
|
|
|
14
|
|
|
/** |
|
15
|
|
|
* initialize the phpmailer plugin |
|
16
|
|
|
*/ |
|
17
|
|
|
function phpmailer_init() { |
|
18
|
|
|
/*if (elgg_get_plugin_setting('phpmailer_override', 'phpmailer') != 'disabled') { |
|
19
|
|
|
register_notification_handler('email', 'phpmailer_notify_handler'); |
|
20
|
|
|
elgg_register_plugin_hook_handler('email', 'system', 'phpmailer_mail_override'); |
|
21
|
|
|
}*/ |
|
22
|
|
|
} |
|
23
|
|
|
|
|
24
|
|
|
/** |
|
25
|
|
|
* Send a notification via email using phpmailer |
|
26
|
|
|
* |
|
27
|
|
|
* @param ElggEntity $from The from user/site/object |
|
28
|
|
|
* @param ElggUser $to To which user? |
|
29
|
|
|
* @param string $subject The subject of the message. |
|
30
|
|
|
* @param string $message The message body |
|
31
|
|
|
* @param array $params Optional parameters (not used) |
|
32
|
|
|
* @return bool |
|
33
|
|
|
*/ |
|
34
|
|
|
function phpmailer_notify_handler(ElggEntity $from, ElggUser $to, $subject, $message, array $params = NULL) { |
|
35
|
|
|
|
|
36
|
|
|
if (!$from) { |
|
37
|
|
|
throw new NotificationException(sprintf(elgg_echo('NotificationException:MissingParameter'), 'from')); |
|
38
|
|
|
} |
|
39
|
|
|
|
|
40
|
|
|
if (!$to) { |
|
41
|
|
|
throw new NotificationException(sprintf(elgg_echo('NotificationException:MissingParameter'), 'to')); |
|
42
|
|
|
} |
|
43
|
|
|
|
|
44
|
|
|
if ($to->email == "") { |
|
45
|
|
|
throw new NotificationException(sprintf(elgg_echo('NotificationException:NoEmailAddress'), $to->guid)); |
|
46
|
|
|
} |
|
47
|
|
|
|
|
48
|
|
|
$from_email = phpmailer_extract_from_email($from); |
|
49
|
|
|
$site = elgg_get_site_entity(); |
|
50
|
|
|
$from_name = $site->name; |
|
51
|
|
|
|
|
52
|
|
|
return phpmailer_send($from_email, $from_name, $to->email, '', $subject, $message); |
|
|
|
|
|
|
53
|
|
|
} |
|
54
|
|
|
|
|
55
|
|
|
/** |
|
56
|
|
|
* Overrides the default email send method of Elgg |
|
57
|
|
|
* @note Will need to add code to handle from and to if using: name <email> |
|
58
|
|
|
*/ |
|
59
|
|
|
function phpmailer_mail_override($hook, $entity_type, $returnvalue, $params) { |
|
60
|
|
|
return phpmailer_send( |
|
61
|
|
|
$params["from"], |
|
62
|
|
|
$params["from"], |
|
63
|
|
|
$params["to"], |
|
64
|
|
|
'', |
|
65
|
|
|
$params["subject"], |
|
66
|
|
|
$params["body"]); |
|
67
|
|
|
} |
|
68
|
|
|
|
|
69
|
|
|
/** |
|
70
|
|
|
* Determine the best 'from' email address |
|
71
|
|
|
* |
|
72
|
|
|
* This is a stupid function pulled from original Elgg code |
|
73
|
|
|
* |
|
74
|
|
|
* @param ElggEntity The entity sending the message |
|
75
|
|
|
* @return string with email address |
|
76
|
|
|
*/ |
|
77
|
|
|
function phpmailer_extract_from_email($from) { |
|
78
|
|
|
$from_email = ''; |
|
79
|
|
|
$site = elgg_get_site_entity(); |
|
80
|
|
|
// If there's an email address, use it - but only if its not from a user. |
|
81
|
|
|
if ($from->email && !($from instanceof ElggUser)) { |
|
82
|
|
|
$from_email = $from->email; |
|
83
|
|
|
// Has the current site got a from email address? |
|
84
|
|
|
} else if ($site && $site->email) { |
|
85
|
|
|
$from_email = $site->email; |
|
86
|
|
|
// If we have a url then try and use that. |
|
87
|
|
|
} else if (isset($from->url)) { |
|
88
|
|
|
$breakdown = parse_url($from->url); |
|
89
|
|
|
$from_email = 'noreply@' . $breakdown['host']; |
|
90
|
|
|
// If all else fails, use the domain of the site. |
|
91
|
|
|
} else { |
|
92
|
|
|
$from_email = 'noreply@' . get_site_domain($site->guid); |
|
93
|
|
|
} |
|
94
|
|
|
|
|
95
|
|
|
return $from_email; |
|
96
|
|
|
} |
|
97
|
|
|
|
|
98
|
|
|
/** |
|
99
|
|
|
* Send an email using phpmailer |
|
100
|
|
|
* |
|
101
|
|
|
* @param string $from From address |
|
|
|
|
|
|
102
|
|
|
* @param string $from_name From name |
|
|
|
|
|
|
103
|
|
|
* @param string $to To address |
|
104
|
|
|
* @param string $to_name To name |
|
105
|
|
|
* @param string $subject The subject of the message. |
|
106
|
|
|
* @param string $body The message body |
|
107
|
|
|
* @param array $bcc Array of address strings |
|
108
|
|
|
* @param bool $html Set true for html email, also consider setting |
|
109
|
|
|
* altbody in $params array |
|
110
|
|
|
* @param array $files Array of file descriptor arrays, each file array |
|
111
|
|
|
* consists of full path and name |
|
112
|
|
|
* @param array $params Additional parameters |
|
113
|
|
|
* @return bool |
|
114
|
|
|
*/ |
|
115
|
|
|
function phpmailer_send($to, $to_name, $subject, $body, array $bcc = NULL, $html = true, array $files = NULL, array $params = NULL, $image = NULL) { |
|
116
|
|
|
|
|
117
|
|
|
require_once elgg_get_plugins_path() . '/phpmailer/vendors/class.phpmailer.php'; |
|
118
|
|
|
$phpmailer = new PHPMailer(true); //defaults to using php "mail()"; the true param means it will throw exceptions on errors, which we need to catch |
|
|
|
|
|
|
119
|
|
|
|
|
120
|
|
|
// CONFIGURE SERVER INFORMATION defaults |
|
121
|
|
|
$phpmailer->IsSMTP(); // telling the class to use SMTP |
|
122
|
|
|
$phpmailer->Host = elgg_get_plugin_setting('phpmailer_host', 'phpmailer'); // SMTP server |
|
123
|
|
|
$phpmailer->Port = elgg_get_plugin_setting('ep_phpmailer_port', 'phpmailer'); // SMTP server port |
|
124
|
|
|
$phpmailer->SMTPAuth = elgg_get_plugin_setting('phpmailer_smtp_auth', 'phpmailer'); |
|
125
|
|
|
$phpmailer->SMTPSecure = ""; // set below |
|
126
|
|
|
$phpmailer->Username = elgg_get_plugin_setting('phpmailer_username', 'phpmailer'); |
|
127
|
|
|
$phpmailer->Password = elgg_get_plugin_setting('phpmailer_password', 'phpmailer'); |
|
128
|
|
|
$phpmailer->SetFrom( elgg_get_plugin_setting('phpmailer_from_email', 'phpmailer'), elgg_get_plugin_setting('phpmailer_from_name', 'phpmailer') ); |
|
|
|
|
|
|
129
|
|
|
|
|
130
|
|
|
/*if (!$from) { |
|
131
|
|
|
throw new NotificationException(sprintf(elgg_echo('NotificationException:MissingParameter'), 'from')); |
|
132
|
|
|
}*/ |
|
133
|
|
|
|
|
134
|
|
|
if (!$to && !$bcc) { |
|
135
|
|
|
throw new NotificationException(sprintf(elgg_echo('NotificationException:MissingParameter'), 'to')); |
|
136
|
|
|
} |
|
137
|
|
|
|
|
138
|
|
|
if (!$subject) { |
|
139
|
|
|
throw new NotificationException(sprintf(elgg_echo('NotificationException:MissingParameter'), 'subject')); |
|
140
|
|
|
} |
|
141
|
|
|
|
|
142
|
|
|
// set line ending if admin selected \n (if admin did not change setting, null is returned) |
|
143
|
|
|
if (elgg_get_plugin_setting('nonstd_mta', 'phpmailer')) |
|
144
|
|
|
$phpmailer->LE = "\n"; |
|
145
|
|
|
else |
|
146
|
|
|
$phpmailer->LE = "\r\n"; |
|
147
|
|
|
|
|
148
|
|
|
//////////////////////////////////// |
|
149
|
|
|
// Format message |
|
150
|
|
|
$phpmailer->SMTPDebug = 0; // Set to 1 for debugging information |
|
|
|
|
|
|
151
|
|
|
|
|
152
|
|
|
$phpmailer->ClearAllRecipients(); |
|
153
|
|
|
$phpmailer->ClearAttachments(); |
|
154
|
|
|
|
|
155
|
|
|
// Set the from name and email |
|
156
|
|
|
//$phpmailer->From = $from; |
|
157
|
|
|
//$phpmailer->FromName = $from_name; |
|
158
|
|
|
|
|
159
|
|
|
if (!filter_var($to, FILTER_VALIDATE_EMAIL)) { |
|
160
|
|
|
return; |
|
161
|
|
|
} |
|
162
|
|
|
|
|
163
|
|
|
// Set destination address |
|
164
|
|
|
if (isset($to)) { |
|
165
|
|
|
$phpmailer->AddAddress($to, $to_name); |
|
166
|
|
|
} |
|
167
|
|
|
|
|
168
|
|
|
// set bccs if exists |
|
169
|
|
|
if ($bcc && is_array($bcc)) { |
|
170
|
|
|
foreach ($bcc as $address) |
|
171
|
|
|
$phpmailer->AddBCC($address); |
|
172
|
|
|
} |
|
173
|
|
|
|
|
174
|
|
|
$phpmailer->Subject = $subject; |
|
175
|
|
|
|
|
176
|
|
|
if ($image) |
|
177
|
|
|
$phpmailer->AddEmbeddedImage($image, 'wire_image'); |
|
178
|
|
|
|
|
179
|
|
|
if (!$html) { |
|
180
|
|
|
$phpmailer->CharSet = 'utf-8'; |
|
181
|
|
|
$phpmailer->IsHTML(false); |
|
182
|
|
|
if ($params && array_key_exists('altbody', $params)) { |
|
183
|
|
|
$phpmailer->AltBody = $params['altbody']; |
|
184
|
|
|
} |
|
185
|
|
|
|
|
186
|
|
|
$trans_tbl = get_html_translation_table(HTML_ENTITIES); |
|
187
|
|
|
$trans_tbl[chr(146)] = '’'; |
|
188
|
|
|
foreach ($trans_tbl as $k => $v) { |
|
189
|
|
|
$ttr[$v] = utf8_encode($k); |
|
|
|
|
|
|
190
|
|
|
} |
|
191
|
|
|
$source = strtr($body, $ttr); |
|
|
|
|
|
|
192
|
|
|
$body = strip_tags($source); |
|
193
|
|
|
|
|
194
|
|
|
$phpmailer->Body = $body; |
|
195
|
|
|
|
|
196
|
|
|
} else { |
|
197
|
|
|
|
|
198
|
|
|
//$phpmailer->IsHTML(true); |
|
199
|
|
|
$phpmailer->CharSet = 'utf-8'; |
|
200
|
|
|
$phpmailer->MsgHTML($body); |
|
201
|
|
|
} |
|
202
|
|
|
|
|
203
|
|
|
|
|
204
|
|
|
if ($files && is_array($files)) { |
|
205
|
|
|
foreach ($files as $file) { |
|
206
|
|
|
if (isset($file['path'])) |
|
207
|
|
|
$phpmailer->AddAttachment($file['path'], $file['name']); |
|
208
|
|
|
} |
|
209
|
|
|
} |
|
210
|
|
|
|
|
211
|
|
|
$is_smtp = elgg_get_plugin_setting('phpmailer_smtp', 'phpmailer'); |
|
212
|
|
|
$smtp_host = elgg_get_plugin_setting('phpmailer_host', 'phpmailer'); |
|
213
|
|
|
$smtp_auth = elgg_get_plugin_setting('phpmailer_smtp_auth', 'phpmailer'); |
|
214
|
|
|
|
|
215
|
|
|
$is_ssl = elgg_get_plugin_setting('ep_phpmailer_ssl', 'phpmailer'); |
|
216
|
|
|
$smtp_port = elgg_get_plugin_setting('ep_phpmailer_port', 'phpmailer'); |
|
217
|
|
|
|
|
218
|
|
|
try { |
|
219
|
|
|
|
|
220
|
|
|
if ($is_smtp && isset($smtp_host)) { |
|
221
|
|
|
|
|
222
|
|
|
if ($smtp_auth && $is_ssl) { |
|
223
|
|
|
|
|
224
|
|
|
$phpmailer->SMTPSecure = "tls"; |
|
225
|
|
|
|
|
226
|
|
|
} |
|
227
|
|
|
} else { |
|
228
|
|
|
// use php's mail |
|
229
|
|
|
$phpmailer->IsMail(); |
|
230
|
|
|
} |
|
231
|
|
|
|
|
232
|
|
|
$phpmailer->Port = $smtp_port; |
|
233
|
|
|
|
|
234
|
|
|
$return = $phpmailer->Send(); |
|
235
|
|
|
|
|
236
|
|
|
} catch (phpmailerException $e) { |
|
|
|
|
|
|
237
|
|
|
|
|
238
|
|
|
$errMess = $e->getMessage(); |
|
239
|
|
|
$errStack = $e->getTraceAsString(); |
|
240
|
|
|
$errType = $e->getCode(); |
|
241
|
|
|
phpmailer_logging($errMess, $errStack, 'PHPMailer', $errType); |
|
242
|
|
|
} |
|
243
|
|
|
|
|
244
|
|
|
|
|
245
|
|
|
|
|
246
|
|
|
if (!$return) { |
|
|
|
|
|
|
247
|
|
|
|
|
248
|
|
|
$errMess = $phpmailer->ErrorInfo; |
|
249
|
|
|
$errStack = ""; |
|
250
|
|
|
$errType = "custom"; |
|
251
|
|
|
phpmailer_logging($errMess, $errStack, 'PHPMailer', $errType); |
|
252
|
|
|
} |
|
253
|
|
|
count_emails(); |
|
254
|
|
|
return $return; |
|
255
|
|
|
} |
|
256
|
|
|
|
|
257
|
|
|
function count_emails(){ |
|
258
|
|
|
$m = new Memcached(); |
|
259
|
|
|
$m->setOption(Memcached::OPT_BINARY_PROTOCOL, true); |
|
260
|
|
|
$m->addServer('localhost', 11211); |
|
261
|
|
|
|
|
262
|
|
|
$n = $m->increment('test', 1, 1); |
|
263
|
|
|
} |
|
264
|
|
|
|
|
265
|
|
|
function phpmailer_logging($errMess, $errStack, $type, $errType) { |
|
266
|
|
|
// logging mechanism |
|
267
|
|
|
if (elgg_is_active_plugin('wet4')) { |
|
268
|
|
|
elgg_load_library('GCconnex_logging'); |
|
269
|
|
|
gc_err_logging($errMess, $errStack, $type, $errType); |
|
270
|
|
|
} |
|
271
|
|
|
} |
It seems like the type of the argument is not accepted by the function/method which you are calling.
In some cases, in particular if PHP’s automatic type-juggling kicks in this might be fine. In other cases, however this might be a bug.
We suggest to add an explicit type cast like in the following example: