ok
Direktori : /home2/selectio/www/billingsoftwarenew/core/vendor/sendgrid/sendgrid/lib/mail/ |
Current File : /home2/selectio/www/billingsoftwarenew/core/vendor/sendgrid/sendgrid/lib/mail/HtmlContent.php |
<?php /** * This helper builds the Content object for a /mail/send API call */ namespace SendGrid\Mail; /** * This class is used to construct a Content object for the /mail/send API call * * @package SendGrid\Mail */ class HtmlContent extends Content { /** * Create a Content object with a HTML mime type * * @param string $value HTML formatted content * * @throws TypeException */ public function __construct($value) { parent::__construct(MimeType::HTML, $value); } }