Hi,
I wonder if it is possible to send emails with images using sendmail?
I tried this:
open (MAIL, "| $maillocation -t"
|| die "cant use $maillocation";
print MAIL "from: $from\n";
print MAIL "To: $email\n";
print MAIL "Reply-to: $from\n";
print MAIL "Subject: Test\n";
print MAIL '<IMG SRC="../images/app.jpg" WIDTH="5" HEIGHT="5" BORDER="0">';
close (MAIL);
But it didn't arrive!
Regards,
Ron
I wonder if it is possible to send emails with images using sendmail?
I tried this:
open (MAIL, "| $maillocation -t"
print MAIL "from: $from\n";
print MAIL "To: $email\n";
print MAIL "Reply-to: $from\n";
print MAIL "Subject: Test\n";
print MAIL '<IMG SRC="../images/app.jpg" WIDTH="5" HEIGHT="5" BORDER="0">';
close (MAIL);
But it didn't arrive!
Regards,
Ron