We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
excludeHtmlContent
When I am using the EmailCampainApi, if I pass true the the excludeHtmlContent is does not exclude html.
EmailCampainApi
private function getSentEmailCampaigns(): ?GetEmailCampaigns { $res = null; try { $res = $this->emailCampaignsApi->getEmailCampaigns( status: 'sent', excludeHtmlContent: true, ); } catch (ApiException $e) { $this->logger->error($e->getMessage()); } return $res; }
I debugged and I saw that the excludeHtmlContent=true property is translated to excludeHtmlContent=1 and that's what it's not working.
excludeHtmlContent=true
excludeHtmlContent=1
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When I am using the
EmailCampainApi
, if I pass true the theexcludeHtmlContent
is does not exclude html.I debugged and I saw that the
excludeHtmlContent=true
property is translated toexcludeHtmlContent=1
and that's what it's not working.The text was updated successfully, but these errors were encountered: