New in Wolfram Mathematica 7: Integrated Programmatic Email  previous | next 
Generate Email That Includes Graphics
Embed Mathematica graphics into email.
In[1]:=

Click for copyable input
SendMail[

  "To" -> "bobexample@wolfram.com",

  "Subject" -> "Mathematica 3D Graphics",

  "Body" -> {

    "Hi Bob,",

    Plot3D[Sin[x y], {x, 0, 3}, {y, 0, 3}],

    "I generated this 3D graphic in Mathematica."

    }

  ];