/
home
/
techb158
/
immovalet.com
/
vendor
/
sendgrid
/
sendgrid
/
lib
/
mail
/
/home/techb158/immovalet.com/vendor/sendgrid/sendgrid/lib/mail
mkdir
upload
Name
Size
Mode
Actions
Asm.php
4669
0644
edit
dl
rm
Attachment.php
5888
0644
edit
dl
rm
BatchId.php
1574
0644
edit
dl
rm
Bcc.php
281
0644
edit
dl
rm
BccSettings.php
2515
0644
edit
dl
rm
BypassListManagement.php
1910
0644
edit
dl
rm
Category.php
1718
0644
edit
dl
rm
Cc.php
278
0644
edit
dl
rm
ClickTracking.php
2686
0644
edit
dl
rm
Content.php
2895
0644
edit
dl
rm
CustomArg.php
2648
0644
edit
dl
rm
EmailAddress.php
4999
0644
edit
dl
rm
Footer.php
3027
0644
edit
dl
rm
From.php
284
0644
edit
dl
rm
Ganalytics.php
6427
0644
edit
dl
rm
GroupId.php
1448
0644
edit
dl
rm
GroupsToDisplay.php
3207
0644
edit
dl
rm
Header.php
2334
0644
edit
dl
rm
HtmlContent.php
531
0644
edit
dl
rm
IpPoolName.php
1980
0644
edit
dl
rm
Mail.php
63114
0644
edit
dl
rm
MailSettings.php
8321
0644
edit
dl
rm
MimeType.php
319
0644
edit
dl
rm
OpenTracking.php
3621
0644
edit
dl
rm
Personalization.php
7912
0644
edit
dl
rm
PlainTextContent.php
547
0644
edit
dl
rm
ReplyTo.php
293
0644
edit
dl
rm
SandBoxMode.php
1603
0644
edit
dl
rm
Section.php
2227
0644
edit
dl
rm
SendAt.php
3576
0644
edit
dl
rm
SpamCheck.php
4290
0644
edit
dl
rm
Subject.php
1370
0644
edit
dl
rm
SubscriptionTracking.php
6754
0644
edit
dl
rm
Substitution.php
2964
0644
edit
dl
rm
TemplateId.php
2313
0644
edit
dl
rm
To.php
278
0644
edit
dl
rm
TrackingSettings.php
9231
0644
edit
dl
rm
TypeException.php
77
0644
edit
dl
rm
Edit:
/home/techb158/immovalet.com/vendor/sendgrid/sendgrid/lib/mail/MailSettings.php
(8321B)
<?php /** * This helper builds the MailSettings object for a /mail/send API call */ namespace SendGrid\Mail; use SendGrid\Helper\Assert; /** * This class is used to construct a MailSettings object for the /mail/send API call * * A collection of different mail settings that you can use to specify how you would * like this email to be handled * * @package SendGrid\Mail */ class MailSettings implements \JsonSerializable { /** @var $bcc Bcc object */ private $bcc; /** @var $bypass_list_management BypassListManagement object */ private $bypass_list_management; /** @var $footer Footer object */ private $footer; /** @var $sandbox_mode SandBoxMode object */ private $sandbox_mode; /** @var $spam_check SpamCheck object */ private $spam_check; /** * Optional constructor * * @param BccSettings|null $bcc_settings BccSettings object * @param BypassListManagement|null $bypass_list_management BypassListManagement * object * @param Footer|null $footer Footer object * @param SandBoxMode|null $sandbox_mode SandBoxMode object * @param SpamCheck|null $spam_check SpamCheck object * @throws \SendGrid\Mail\TypeException */ public function __construct( $bcc_settings = null, $bypass_list_management = null, $footer = null, $sandbox_mode = null, $spam_check = null ) { if (isset($bcc_settings)) { $this->setBccSettings($bcc_settings); } if (isset($bypass_list_management)) { $this->setBypassListManagement($bypass_list_management); } if (isset($footer)) { $this->setFooter($footer); } if (isset($sandbox_mode)) { $this->setSandboxMode($sandbox_mode); } if (isset($spam_check)) { $this->setSpamCheck($spam_check); } } /** * Set the bcc settings on a MailSettings object * * @param BccSettings|bool $enable The BccSettings object or an indication * if the setting is enabled * @param string|null $email The email address that you would like * to receive the BCC * * @throws \SendGrid\Mail\TypeException */ public function setBccSettings($enable, $email = null) { if ($enable instanceof BccSettings) { $bcc = $enable; $this->bcc = $bcc; return; } Assert::boolean( $enable, 'enable', 'Value "$enable" must be an instance of SendGrid\Mail\BccSettings or a boolean.' ); $this->bcc = new BccSettings($enable, $email); } /** * Retrieve the bcc settings from a MailSettings object * * @return Bcc */ public function getBccSettings() { return $this->bcc; } /** * Set bypass list management settings on a MailSettings object * * @param BypassListManagement|bool $enable The BypassListManagement * object or an indication * if the setting is enabled * * @throws \SendGrid\Mail\TypeException */ public function setBypassListManagement($enable) { if ($enable instanceof BypassListManagement) { $bypass_list_management = $enable; $this->bypass_list_management = $bypass_list_management; return; } Assert::boolean( $enable, 'enable', 'Value "$enable" must be an instance of SendGrid\Mail\BypassListManagement or a boolean.' ); $this->bypass_list_management = new BypassListManagement($enable); } /** * Retrieve bypass list management settings from a MailSettings object * * @return BypassListManagement */ public function getBypassListManagement() { return $this->bypass_list_management; } /** * Set the footer settings on a MailSettings object * * @param Footer|bool $enable The Footer object or an indication * if the setting is enabled * @param string|null $text The plain text content of your footer * @param string|null $html The HTML content of your footer * * @throws TypeException */ public function setFooter($enable, $text = null, $html = null) { if ($enable instanceof Footer) { $footer = $enable; $this->footer = $footer; return; } $this->footer = new Footer($enable, $text, $html); } /** * Retrieve the footer settings from a MailSettings object * * @return Footer */ public function getFooter() { return $this->footer; } /** * Set sandbox mode settings on a MailSettings object * * @param SandBoxMode|bool $enable The SandBoxMode object or an * indication if the setting is enabled * * @throws TypeException */ public function setSandboxMode($enable) { if ($enable instanceof SandBoxMode) { $sandbox_mode = $enable; $this->sandbox_mode = $sandbox_mode; return; } Assert::boolean( $enable, 'enable', 'Value "$enable" must be an instance of SendGrid\Mail\SandBoxMode or a boolean.' ); $this->sandbox_mode = new SandBoxMode($enable); } /** * Retrieve sandbox mode settings on a MailSettings object * * @return SandBoxMode */ public function getSandboxMode() { return $this->sandbox_mode; } /** * Enable sandbox mode on a MailSettings object * * @throws TypeException */ public function enableSandboxMode() { $this->setSandboxMode(true); } /** * Disable sandbox mode on a MailSettings object * * @throws TypeException */ public function disableSandboxMode() { $this->setSandboxMode(false); } /** * Set spam check settings on a MailSettings object * * @param SpamCheck|bool $enable The SpamCheck object or an * indication if the setting is enabled * @param int $threshold The threshold used to determine if your * content qualifies as spam on a scale * from 1 to 10, with 10 being most strict, * or most * @param string $post_to_url An Inbound Parse URL that you would like * a copy of your email along with the spam * report to be sent to * * @throws TypeException */ public function setSpamCheck($enable, $threshold = null, $post_to_url = null) { if ($enable instanceof SpamCheck) { $spam_check = $enable; $this->spam_check = $spam_check; return; } Assert::boolean( $enable, 'enable', 'Value "$enable" must be an instance of SendGrid\Mail\SpamCheck or a boolean.' ); $this->spam_check = new SpamCheck($enable, $threshold, $post_to_url); } /** * Retrieve spam check settings from a MailSettings object * * @return SpamCheck */ public function getSpamCheck() { return $this->spam_check; } /** * Return an array representing a MailSettings object for the Twilio SendGrid API * * @return null|array */ public function jsonSerialize() { return array_filter( [ 'bcc' => $this->getBccSettings(), 'bypass_list_management' => $this->getBypassListManagement(), 'footer' => $this->getFooter(), 'sandbox_mode' => $this->getSandboxMode(), 'spam_check' => $this->getSpamCheck() ], function ($value) { return $value !== null; } ) ?: null; } }
Save
cmd:
run