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

Breadcrumb

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

function Email::attachFromPath

Return value

$this

File

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

Class

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

Namespace

Symfony\Component\Mime

Code

public function attachFromPath(string $path, ?string $name = null, ?string $contentType = null) : static {
    return $this->addPart(new DataPart(new File($path), $name, $contentType));
}
RSS feed
Powered by Drupal