Skip to content

Commit

Permalink
Fixes #17
Browse files Browse the repository at this point in the history
  • Loading branch information
micfai committed Feb 10, 2015
1 parent 158df15 commit 4217b61
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/Infusionsoft/Api/APIEmailService.php
Original file line number Diff line number Diff line change
Expand Up @@ -93,12 +93,11 @@ public function optOut($email, $optOutReason)
* @param string $subject
* @param string $htmlBody
* @param string $textBody
* @param string $templateId
* @return bool
*/
public function sendEmail($contactList, $fromAddress, $toAddress, $ccAddress, $bccAddress, $contentType, $subject, $htmlBody, $textBody, $templateId)
public function sendEmail($contactList, $fromAddress, $toAddress, $ccAddress, $bccAddress, $contentType, $subject, $htmlBody, $textBody)
{
return $this->client->request('APIEmailService.sendEmail', $contactList, $fromAddress, $toAddress, $ccAddress, $bccAddress, $contentType, $subject, $htmlBody, $textBody, $templateId);
return $this->client->request('APIEmailService.sendEmail', $contactList, $fromAddress, $toAddress, $ccAddress, $bccAddress, $contentType, $subject, $htmlBody, $textBody);
}

/**
Expand Down

0 comments on commit 4217b61

Please sign in to comment.