Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. Email.php

function Email::setHeaderBody

Return value

$this

5 calls to Email::setHeaderBody()
Email::date in vendor/symfony/mime/Email.php
Email::priority in vendor/symfony/mime/Email.php
Sets the priority of this message.
Email::returnPath in vendor/symfony/mime/Email.php
Email::sender in vendor/symfony/mime/Email.php
Email::subject in vendor/symfony/mime/Email.php

File

vendor/symfony/mime/Email.php, line 515

Class

Email
@author Fabien Potencier <fabien@symfony.com>

Namespace

Symfony\Component\Mime

Code

private function setHeaderBody(string $type, string $name, $body) : static {
    $this->getHeaders()
        ->setHeaderBody($type, $name, $body);
    return $this;
}
RSS feed
Powered by Drupal