Pagekit\Mail\Message::embedData PHP Méthode

embedData() public méthode

Embeds in-memory data in the message and get the CID.
public embedData ( string $data, string $name, string $contentType = null ) : string
$data string
$name string
$contentType string
Résultat string
    public function embedData($data, $name, $contentType = null)
    {
        return $this->embed(Swift_Image::newInstance($data, $name, $contentType));
    }