Site icon Hip-Hop Website Design and Development

find out how to ship an electronic mail with wp_mail with a picture on the e-mail physique

I can ship emails utilizing wp_mail, nevertheless any picture on the physique is not going to be show on the e-mail acquired.
Is there any method of sending a picture throughout the message

that is the code used to ship emails:

$to = 'someotheremail@mail.com';
$headers = array('Content material-Sort: textual content/html; charset=UTF-8','From: information@mywebsite.com');
$topic = "Olá $util, Benvindo(a) ao nosso site!";
$physique = '
          <h3>Olá </h3></br>
          <p>Obrigado por se registar no web site</p>
          <p>Saudações,</p>
          <p>my web site</p>';
wp_mail($to, $topic, $physique, $headers);

this code works and ship the e-mail, nevertheless if I put a picture tag with the src of my picture, the picture is not going to be displayed, had additionally attempt to ship the picture tag contained in the physique tag and nonetheless the identical end result.

Anybody!