Cómo agregar una imagen al cuerpo del correo php

Estoy tratando de agregar una imagen al cuerpo del correo desde la carpeta. Pero no muestra solo texto en pantalla en la etiqueta alt. Este es mi código.

<?php 
   $to = $email;
        $subject="Reservation notification From abc";
        $from = '[email protected]';
            $body = '<html><body>';
            $body .= '<img src="img/logo.png" alt="Hotel" /><br/>';
            $body .= '<table rules="all" style="border-color: #666;" cellpadding="10">';
            $body .= '<p style="color:#3366FF;font-size:14px;">Hello'.' '.$name.',</p>';
            $body .= "</table>";
            $body .= "</body></html>";

        $headers = "From: $from \r\n";
        $headers .= "Reply-To: $from \r\n";
        $headers = 'MIME-Version: 1.0' . "\r\n" .
           'Content-type: text/html; charset=iso-8859-1' . "\r\n" .

           'X-Mailer: PHP/' . phpversion();

        mail($to, $subject, $body,$headers);
?>

Respuestas a la pregunta(2)

Su respuesta a la pregunta