Pagekit\Mail\Message::embedData PHP Method

embedData() public method

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
return string
    public function embedData($data, $name, $contentType = null)
    {
        return $this->embed(Swift_Image::newInstance($data, $name, $contentType));
    }