Are you using any server side languages (such as PHP, ASP, etc)? If you are using PHP, probably the best way I can think of doing this would be by sending an email in HTML format. The following example is taken from the PHP.net website:
Code:
<?php
// multiple recipients
$to = 'user@example.com'
// subject
$subject = 'Image from our website';
// message
$message = '
<html>
<head>
<title>Image from our website</title>
</head>
<body>
<img src="image.jpg">
</body>
</html>
';
// To send HTML mail, the Content-type header must be set
$headers = 'MIME-Version: 1.0' . "\r\n";
$headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";
// Additional headers
$headers .= 'From: PHP script <noreply@example.com>';
// Mail it
mail($to, $subject, $message, $headers);
?>
Hope this helps.
Bookmarks