Search for image in the body of the email content.
Suppose your email body is $body
then you could get the image url using preg_match.
Use this preg_match expression to get the image source.
preg_match('/< *img[^>]*src *= *["\']?([^"\']*)/i', $body, $matches);