ping182nz
05-26-2005, 03:54 AM
Hi,
I have a emailing script to automatically send the results of a questionaire to the user.
I am wanting to also include a Fusion Graph (Flash swf) in the email....
Is this possible? Any Ideas How?
Here is the link to the fusion site http://www.infosoftglobal.com/FusionCharts/
Thanks
_Aerospace_Eng_
05-26-2005, 07:13 AM
Hmm, I haven't made too many email pages, can't you just put the flash in there using the object tag, or do you not know how to do that?
ping182nz
05-26-2005, 08:09 AM
Im having trouble structuring the html and getting css to work...
I have to declare all the html on one line of my asp page (which is crap!) otherwise there is a error.
chilipie
05-26-2005, 04:06 PM
How is an ASP page going to work if you send it by email (I'm assuming you don't just mean a link)?
ping182nz
05-26-2005, 09:35 PM
Its not asp, the email will be html with a embedded flash object....
I just wanted to put html in asp code, so I have to escape all the " with "" and then it wont work unless I put everything on the same line.
eg
ObjSendMail.HTMLBody = "<html><head><title></title><link rel=""stylesheet"" type=""text/css"" href=""/default.css"" /><link rel=""stylesheet"" type=""text/css"" media=""print"" href=""/print.css"" /></head><body><table width=""70%"" class=""tborder"" border=""0"" cellspacing=""0"" cellpadding=""4"" align=""center""><tr><td colspan=""2"" class=""labletable""><div style=""font-weight:bold;"">Summary Results of the Self Assessment into:</div></td><td rowspan=""5"" align=""center"" class=""labletable""><img src=""pq_logo.gif"" align=""absbottom"" align=""right""></td></tr><tr><td colspan=""2"" class=""labletable2"">Refining Business Management</td></tr><tr><td colspan=""2"" class=""labletable3"">for</td></tr><tr><td colspan=""2"" class=""labletable2"">" + thisname + "</td></tr><tr><td colspan=""2"" class=""labletable"">" + thissite + "</td></tr></table><table width=""70%"" class=""tborder"" border=""0"" cellspacing=""1"" cellpadding=""4"" align=""center""><tr><td class=""summarytableoverall"">Refining Business Management</td><td align=""center"" class=""summarytableoverall"">" + overall + "</td></tr><tr><td class=""summarytableidiv"">Manage the Business</td><td align=""center"">" + manBus + "</td></tr><tr><td class=""summarytableidiv"">Manage HSES</td><td align=""center"">" + manHSES + "</td></tr><tr><td class=""summarytableidiv"">Manage Corporate Support Services</td><td align=""center"">" + manCSS + "</td></tr><tr><td class=""summarytableidiv"">Develop the Organisation</td><td align=""center"">" + devOrg + "</td></tr><tr><td colspan=""2"" class=""summarytablecomment"">" + work + "</td><td></td></tr></table></body></html>"
but the asp variable " + work + " dosnt get printed as it is a text variable with " around it, I.e "this is text" so when inserting it in it will go
html code here" + work + "html code here but it isnt working???
Any help??
Thanks...