| 1 | <?php |
||
| 9 | class CampaignMailable extends Mailable |
||
| 10 | { |
||
| 11 | use SerializesModels; |
||
| 12 | |||
| 13 | /** @var \Spatie\EmailCampaigns\Models\Campaign */ |
||
| 14 | public $campaign; |
||
| 15 | |||
| 16 | /** @var \Spatie\EmailCampaigns\Models\CampaignSend */ |
||
| 17 | public $campaignSend; |
||
| 18 | |||
| 19 | /** @var string */ |
||
| 20 | public $content; |
||
| 21 | |||
| 22 | public function setCampaignSend(CampaignSend $campaignSend) |
||
| 28 | |||
| 29 | public function setContent(string $content) |
||
| 35 | |||
| 36 | public function build() |
||
| 43 | |||
| 44 | protected function addUnsubscribeHeaders() |
||
| 55 | } |
||
| 56 |