PHPMailer\PHPMailer\PHPMailer::inlineImageExists PHP Method

inlineImageExists() public method

Check if an inline attachment is present.
public inlineImageExists ( ) : boolean
return boolean
    public function inlineImageExists()
    {
        foreach ($this->attachment as $attachment) {
            if ($attachment[6] == 'inline') {
                return true;
            }
        }
        return false;
    }