|
@@ 1084-1086 (lines=3) @@
|
| 1081 |
|
if(count($this->attachment) > 0) { |
| 1082 |
|
$this->message_type = 'attachments'; |
| 1083 |
|
} |
| 1084 |
|
if(strlen($this->AltBody) > 0 && count($this->attachment) < 1) { |
| 1085 |
|
$this->message_type = 'alt'; |
| 1086 |
|
} |
| 1087 |
|
if(strlen($this->AltBody) > 0 && count($this->attachment) > 0) { |
| 1088 |
|
$this->message_type = 'alt_attachments'; |
| 1089 |
|
} |
|
@@ 1087-1089 (lines=3) @@
|
| 1084 |
|
if(strlen($this->AltBody) > 0 && count($this->attachment) < 1) { |
| 1085 |
|
$this->message_type = 'alt'; |
| 1086 |
|
} |
| 1087 |
|
if(strlen($this->AltBody) > 0 && count($this->attachment) > 0) { |
| 1088 |
|
$this->message_type = 'alt_attachments'; |
| 1089 |
|
} |
| 1090 |
|
} |
| 1091 |
|
} |
| 1092 |
|
|