-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSwiftMessageUtils.php
More file actions
48 lines (43 loc) · 1.03 KB
/
SwiftMessageUtils.php
File metadata and controls
48 lines (43 loc) · 1.03 KB
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 Nuxia\MailStorageBundle;
class SwiftMessageUtils
{
private function __construct()
{
//Avoid new on class
}
/**
* @param array $address
*
* @return array
*/
public static function addressesToSimpleArray(array $address)
{
$parse = array();
foreach ($address as $key => $value) {
if (is_numeric($key)) {
$parse[] = $value;
} elseif ($value === null) {
$parse[] = $key;
} else {
$parse[] = $value . '<' . $key . '>';
}
}
return $parse;
}
/**
* @param \Swift_Message $message
* @param string $contentType
*
* @return string|null
*/
public static function getPart(\Swift_Message $message, $contentType)
{
foreach ($message->getChildren() as $child) {
if ($child->getContentType() === $contentType) {
return $child->getBody();
}
}
return null;
}
}