/var/www/doncode.com.ua/www/lib/sendgrid/lib/mail
Edit: /var/www/doncode.com.ua/www/lib/sendgrid/lib/mail/Content.php (2932B)
setType($type);
}
if (isset($value)) {
$this->setValue($value);
}
}
/**
* Add the mime type on a Content object
*
* @param string $type The mime type of the content you are including
* in your email. For example, “text/plain” or
* “text/html”
*
* @throws TypeException
*/
public function setType($type)
{
Assert::string($type, 'type');
$this->type = $type;
}
/**
* Retrieve the mime type on a Content object
*
* @return string|null
*/
public function getType()
{
return $this->type;
}
/**
* Add the content value to a Content object
*
* @param string $value The actual content of the specified mime type
* that you are including in your email
*
* @throws TypeException
*/
public function setValue($value)
{
Assert::minLength($value, 'value', 1);
$this->value = mb_convert_encoding((string)$value, 'UTF-8', 'UTF-8');
}
/**
* Retrieve the content value to a Content object
*
* @return string|null
*/
public function getValue()
{
return $this->value;
}
/**
* Return an array representing a Contact object for the Twilio SendGrid API
*
* @return null|array
*/
#[\ReturnTypeWillChange]
public function jsonSerialize()
{
return array_filter(
[
'type' => $this->getType(),
'value' => $this->getValue()
],
function ($value) {
return $value !== null;
}
) ?: null;
}
}