Advertisement
Guest User

Untitled

a guest
Jul 10th, 2015
212
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. let s_html = "<html><div>Hello</div></html>";;
  2.  
  3. let body = (Netsendmail.wrap_attachment
  4. ~content_type:("text/html", [])
  5. (new Netmime.memory_mime_body s_html))::[]
  6.  
  7. let email = Netsendmail.wrap_mail
  8. ~from_addr:("You", "[email protected]")
  9. ~to_addrs:[("person", "[email protected]")]
  10. ~out_charset:`Enc_utf8
  11. ~subject:"Test"
  12. (
  13. Netsendmail.wrap_parts
  14. ~content_type:("multipart/mixed",[])
  15. body);;
  16.  
  17. Netsendmail.sendmail ~mailer:"/usr/sbin/sendmail" email
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement