* Set cc
(cc)
| 134 | * Set cc |
| 135 | */ |
| 136 | setCc(cc) { |
| 137 | if (typeof cc === 'undefined') { |
| 138 | return; |
| 139 | } |
| 140 | if (!Array.isArray(cc)) { |
| 141 | cc = [cc]; |
| 142 | } |
| 143 | this.cc = EmailAddress.create(cc); |
| 144 | } |
| 145 | |
| 146 | /** |
| 147 | * Add a single cc |
no test coverage detected