-
Notifications
You must be signed in to change notification settings - Fork 13
Conversation
* Assert that the last email was bcc'ed to the given address. | ||
* | ||
* @param string $bcc | ||
* @param Swift_Message $message |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do you want to use that, or the convention @param Swift_Message|null $message
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I will make that change. Thanks.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I have made that change, so this PR is ready to review again.
Coveralls never reported the test coverage. Can you manually trigger another commit to see if it will report? |
->getCc(), "No email was cc'ed to $cc."); | ||
|
||
return $this; | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why not allow someone to pass in an array of emails for the CC and BCC tests?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I made a separate issue for that #18 so I want to do that in a different feature.
…nto feature/checkCcAndBccFields
…nto feature/checkCcAndBccFields
Feature/check cc and bcc fields
Added assertions for Cc, Bcc & Reply To. Closes #4, #5 & #8