A specific answer will depend on what component you're using to send e-
mails, but regardless of the component you should be able to specify
an HTML mode or an HTML body within which you can place a regular IMG
tag with a SRC attribute pointing to http://chart.apis.google.com/.

For example, using CDO.Message I would specify:

Dim signupEmail
Set signupEmail = Server.CreateObject("CDO.Message")
signupEmail.From = "..."
signupEmail.To = "..."
signupEmail.Subject = "..."
signupEmail.HTMLBody = "Google Chart Test <img src=...... />"
signupEmail.Send()

Good luck,
K

On Jan 27, 11:12 am, superdave <[email protected]> wrote:
> I need to distribute a chart generated by Google Charts within an
> email.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Google Chart API" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/google-chart-api?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to