/var/www/doncode.com.ua/www/lib/sendgrid/lib/mail
NameSizeModeActions
Asm.php46980644editdlrm
Attachment.php59170644editdlrm
BatchId.php16030644editdlrm
Bcc.php2810644editdlrm
BccSettings.php25440644editdlrm
BypassBounceManagement.php19940644editdlrm
BypassListManagement.php19390644editdlrm
BypassSpamManagement.php19820644editdlrm
BypassUnsubscribeManagement.php21220644editdlrm
Category.php17470644editdlrm
Cc.php2780644editdlrm
ClickTracking.php27150644editdlrm
Content.php29320644editdlrm
CustomArg.php26770644editdlrm
EmailAddress.php50280644editdlrm
Footer.php30560644editdlrm
From.php2840644editdlrm
Ganalytics.php64560644editdlrm
GroupId.php14770644editdlrm
GroupsToDisplay.php32360644editdlrm
Header.php23630644editdlrm
HtmlContent.php5310644editdlrm
IpPoolName.php20090644editdlrm
Mail.php697390644editdlrm
MailSettings.php137510644editdlrm
MimeType.php3190644editdlrm
OpenTracking.php36500644editdlrm
Personalization.php84080644editdlrm
PlainTextContent.php5470644editdlrm
README.md5130644editdlrm
ReplyTo.php2930644editdlrm
SandBoxMode.php16320644editdlrm
Section.php22560644editdlrm
SendAt.php36050644editdlrm
SpamCheck.php43190644editdlrm
Subject.php14070644editdlrm
SubscriptionTracking.php67830644editdlrm
Substitution.php29930644editdlrm
TemplateId.php23420644editdlrm
To.php2780644editdlrm
TrackingSettings.php92600644editdlrm
TypeException.php770644editdlrm
Edit: /var/www/doncode.com.ua/www/lib/sendgrid/lib/mail/SendAt.php (3605B)
setSendAt($send_at); } } /** * Add the send at value to a SendAt object * * @param int $send_at A unix timestamp allowing you to specify when you * want your email to be delivered. This may be * overridden by the personalizations[x].send_at * parameter. You can't schedule more than 72 hours * in advance. If you have the flexibility, it's better * to schedule mail for off-peak times. Most emails are * scheduled and sent at the top of the hour or half * hour. Scheduling email to avoid those times (for * example, scheduling at 10:53) can result in lower * deferral rates because it won't be going through * our servers at the same times as everyone else's mail * * @throws \SendGrid\Mail\TypeException */ public function setSendAt($send_at) { Assert::integer($send_at, 'send_at'); $this->send_at = $send_at; } /** * Retrieve the send at value from a SendAt object * * @return int */ public function getSendAt() { return $this->send_at; } /** * Return an array representing a SendAt object for the Twilio SendGrid API * * @return int */ #[\ReturnTypeWillChange] public function jsonSerialize() { return $this->getSendAt(); } }