We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0040822 commit 8895fc6Copy full SHA for 8895fc6
src/Email.php
@@ -222,7 +222,7 @@ public function getError()
222
*/
223
public function hasCc()
224
{
225
- return !is_null($this->cc);
+ return strlen($this->getOriginal('cc')) > 0;
226
}
227
228
/**
@@ -232,7 +232,7 @@ public function hasCc()
232
233
public function hasBcc()
234
235
- return !is_null($this->bcc);
+ return strlen($this->getOriginal('bcc')) > 0;
236
237
238
0 commit comments