Bogardo\Mailgun\Mail\Message::embed PHP Method

embed() public method

Embed a file in the message and get the CID.
public embed ( string $path, string $name = null ) : string
$path string
$name string
return string
    public function embed($path, $name = null)
    {
        $name = $name ?: basename($path);
        $this->messageBuilder->addInlineImage("@{$path}", $name);
        return "cid:{$name}";
    }