How do I send email with logos(images) after a query result?

2002-10-07 Thread Kodjo Ackah

Hi there,
How can I send a HTML mail to my users after they register?
The snippet below does not work.
Any help?
 
 
CFQUERY NAME=ValidateUser
DATASOURCE=#application.PrimaryDataSource# dbtype=ODBC
SELECT  client_username, client_password, client_id,
client_firstname, client_surname, client_admin
FROM tbl_client 
WHERE client_id = #id#
/CFQUERY
 
 
 
 
 
cfset session.NewReg = True
CFMAIL TO=#Form.client_email#
FROM=[EMAIL PROTECTED]
SUBJECT=Thanks for Your registration
TYPE=HTML
TABLE  border=0 cellspacing=0
cellpadding=0 align=left bgcolor=##00
   TR 
 
TDimg src=images/top_half_red_600.jpg width=615 height=58/td
  /TR 
  TR
 
TD class=bodytextnbsp;/TD
  /TR
  TR
TDfont
face=Arial size=-1Dear #Form.client_Firstname#,/font/TD
  /TR
  TR
 
TD class=bodytextnbsp;/TD
  /TR
  TR
 
TD class=bodytextnbsp;/TD
  /TR
  TR
   TDfont
face=Arial size=-1Thanks for registering with us/font/TD
  /TR

/TABLE
/cfmail
 
Cheers!
 
Kodjo Ackah
Principal Consultant
Concrete Media Ltd
32 Great Sutton Street
Clerkenwell
London, EC1V 0DX
 
Tel:+44 (0)20 7251 8090
Fax: +44 (0)20 7251 8780
Mobile: +44 (0)7748 79 1038
 
Office Location: http://www.streetmap.co.uk/streetmap.dll?G2M?X=531852
http://www.streetmap.co.uk/streetmap.dll?G2M?X=531852Y=182204A=YZ=1
Y=182204A=YZ=1
 

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm



Re: How do I send email with logos(images) after a query result?

2002-10-07 Thread Stephen Moretti

Kodjo,


 Hi there,
 How can I send a HTML mail to my users after they register?
 The snippet below does not work.
 Any help?
  

Why doesn't it work?  What happens?  Is there an error that you receive?


Stephen

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm



RE: How do I send email with logos(images) after a query result?

2002-10-07 Thread Kodjo Ackah

I expect to see the image in the first row at the top of the email but I
only see a place holder.

Kodjo Ackah
Principal Consultant
Concrete Media Ltd
32 Great Sutton Street
Clerkenwell
London, EC1V 0DX
 
Tel:+44 (0)20 7251 8090
Fax: +44 (0)20 7251 8780
Mobile: +44 (0)7748 79 1038
 
Office Location:
http://www.streetmap.co.uk/streetmap.dll?G2M?X=531852Y=182204A=YZ=1
 

-Original Message-
From: Stephen Moretti [mailto:[EMAIL PROTECTED]] 
Sent: 07 October 2002 11:41
To: CF-Talk
Subject: Re: How do I send email with logos(images) after a query
result?

Kodjo,


 Hi there,
 How can I send a HTML mail to my users after they register?
 The snippet below does not work.
 Any help?
  

Why doesn't it work?  What happens?  Is there an error that you receive?


Stephen


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm



Re: How do I send email with logos(images) after a query result?

2002-10-07 Thread Patric Stumpe

Hi Kodjo,

could it be that you need to use an absolute URL or embed the image
manual?

Patric


KA I expect to see the image in the first row at the top of the email but I
KA only see a place holder.

KA Kodjo Ackah
KA Principal Consultant
KA Concrete Media Ltd
KA 32 Great Sutton Street
KA Clerkenwell
KA London, EC1V 0DX
 
KA Tel:+44 (0)20 7251 8090
KA Fax: +44 (0)20 7251 8780
KA Mobile: +44 (0)7748 79 1038
 
KA Office Location:
KA http://www.streetmap.co.uk/streetmap.dll?G2M?X=531852Y=182204A=YZ=1
 

KA -Original Message-
KA From: Stephen Moretti [mailto:[EMAIL PROTECTED]] 
KA Sent: 07 October 2002 11:41
KA To: CF-Talk
KA Subject: Re: How do I send email with logos(images) after a query
KA result?

KA Kodjo,


 Hi there,
 How can I send a HTML mail to my users after they register?
 The snippet below does not work.
 Any help?
  

KA Why doesn't it work?  What happens?  Is there an error that you receive?


KA Stephen


KA 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com



Re: How do I send email with logos(images) after a query result?

2002-10-07 Thread Stephen Moretti

 I expect to see the image in the first row at the top of the email but I
 only see a place holder.


You need to use fully qualified file path.  You only have a relative path so
the image won't be found.

img src=images/top_half_red_600.jpg width=615 height=58

needs to be

img src=http://www.concrete-media.com/images/top_half_red_600.jpg;
width=615 height=58


Stephen


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.



RE: How do I send email with logos(images) after a query result?

2002-10-07 Thread Mike Townend

When it gets to the client then if images are not included in-line of
the email then they should be referenced with a fully qualified path...
i.e. http://www.yourserver/images/foo.gif

HTH



-Original Message-
From: Kodjo Ackah [mailto:[EMAIL PROTECTED]] 
Sent: Monday, October 7, 2002 11:42
To: CF-Talk
Subject: RE: How do I send email with logos(images) after a query
result?


I expect to see the image in the first row at the top of the email but I
only see a place holder.

Kodjo Ackah
Principal Consultant
Concrete Media Ltd
32 Great Sutton Street
Clerkenwell
London, EC1V 0DX
 
Tel:+44 (0)20 7251 8090
Fax: +44 (0)20 7251 8780
Mobile: +44 (0)7748 79 1038
 
Office Location:
http://www.streetmap.co.uk/streetmap.dll?G2M?X=531852Y=182204A=YZ=1
 

-Original Message-
From: Stephen Moretti [mailto:[EMAIL PROTECTED]] 
Sent: 07 October 2002 11:41
To: CF-Talk
Subject: Re: How do I send email with logos(images) after a query
result?

Kodjo,


 Hi there,
 How can I send a HTML mail to my users after they register? The 
 snippet below does not work. Any help?
  

Why doesn't it work?  What happens?  Is there an error that you receive?


Stephen



~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm