Skip to content

Commit

Permalink
Merge pull request #14 from eduzz/feature-add-email-type-access
Browse files Browse the repository at this point in the history
add email type access
  • Loading branch information
henriquegomes6 authored May 4, 2021
2 parents d674409 + 2dbd95d commit baa2529
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/Messages/EmailMessage.php
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,13 @@ public function postback(Postback $postback)

public function marketing()
{
$this->type = "marketing";
$this->type = 'marketing';
return $this;
}

public function access()
{
$this->type = 'access';
return $this;
}

Expand Down

0 comments on commit baa2529

Please sign in to comment.