blob: 6c7eeff086e1ba75adfaa684edaf0a3e4dfc231c (
plain)
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
|
<?php
namespace Kanboard\Helper;
use Kanboard\Core\Base;
/**
* Class MailHelper
*
* @package Kanboard\Helper
* @author Frederic Guillot
*/
class MailHelper extends Base
{
/**
* Get the mailbox hash from an email address
*
* @access public
* @param string $email
* @return string
*/
public function getMailboxHash($email)
{
if (! strpos($email, '@') || ! strpos($email, '+')) {
return '';
}
list($localPart, ) = explode('@', $email);
list(, $identifier) = explode('+', $localPart);
return $identifier;
}
/**
* Filter mail subject
*
* @access public
* @param string $subject
* @return string
*/
public function filterSubject($subject)
{
$subject = str_replace('RE: ', '', $subject);
$subject = str_replace('FW: ', '', $subject);
return $subject;
}
}
|