Oracle
 sql >> Database >  >> RDS >> Oracle

incorporare l'immagine nell'e-mail html

Prova a inserirlo direttamente, in questo modo puoi inserire più immagini in vari punti dell'email.

<img src="data:image/jpg;base64,{{base64-data-string here}}" />

E per rendere questo post utile per gli altri:se non hai una stringa di dati base64, creane una facilmente su:http://www.motobit.com/util/base64-decoder-encoder.asp da un file immagine .

Il codice sorgente dell'e-mail è simile a questo, ma non posso davvero dirti a cosa serve quel limite:

 To: [email protected]
 Subject: ...
 Content-Type: multipart/related;
 boundary="------------090303020209010600070908"

This is a multi-part message in MIME format.
--------------090303020209010600070908
Content-Type: text/html; charset=ISO-8859-15
Content-Transfer-Encoding: 7bit

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <head>

    <meta http-equiv="content-type" content="text/html; charset=ISO-8859-15">
  </head>
  <body bgcolor="#ffffff" text="#000000">
    <img src="cid:part1.06090408.01060107" alt="">
  </body>
</html>

--------------090303020209010600070908
Content-Type: image/png;
 name="moz-screenshot.png"
Content-Transfer-Encoding: base64
Content-ID: <part1.06090408.01060107>
Content-Disposition: inline;
 filename="moz-screenshot.png"

[base64 image data here]

--------------090303020209010600070908--

//EDIT:Oh, mi rendo conto che se inserisci il primo frammento di codice dal mio post per scrivere un'e-mail con thunderbird, thunderbird cambia automaticamente il codice html in modo che assomigli più o meno al secondo codice nel mio post.