RE: What do you use to send out HTML NEWSLETTERS from your site

2002-05-16 Thread Jon Block

You want to use gammadyne mailer. It is the hands down best mail software
I've ever used. The author wants a miniscule $100 for the license, and
you'll get to send out TONS of email based on addresses in your database. It
does all kinds of stuff. Really awesome software! A+++ Beats anything I've
seen before. Don't even think about using CFMAIL its a joke.

http://www.gammadyne.com/mmail.htm

I wrote a custom tag that interfaces to gammadyne over the command line via
CFEXECUTE and it starts the gammadyne process running in a non blocking mode
from CF. You can use gammadyne's GUI interface too.

Hope this helps.
Cheers,
Jon

-Original Message-
From: John Innit [mailto:[EMAIL PROTECTED]]
Sent: Thursday, May 16, 2002 4:56 AM
To: CF-Talk
Subject: What do you use to send out HTML NEWSLETTERS from your site


We're building an application to send out HTML email newsletters, the
application needs to integrate with our SQL database for personalization
and needs to support HTML templates  for each newsletter, as the basic
format and layout of each email stays the same and we just replace the
content which consists of text.

We've tried using the CF_HTMLAREA and CF_ActivEdit tags as WYSIWYG editors
for entering the text into the templates but have found that this bloats up
the HTML and it ends up large and clunky - not really good for email!!.
We're also having problems getting the text to display properly, word
wraps, line spacing etc.

This effort is getting frustrating.

There must be a ton of ways to effectively send out and manage hi quality
HTML emails from our site (I get tons of well composed spam every day) and
it seems like we're trying to reinvent the wheel when the garage is just
next door!!

Can anyone help in recommending a good product or service or source code or
even just an idea or suggestion.

Thanks for your time.










"The only difference between me and a madman is that I'm not mad."
- Salvador Dali (1904-1989)


__
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: What do you use to send out HTML NEWSLETTERS from your site

2002-05-16 Thread Larry Juncker

For those interested - here is the rest of my CFMAIL tag:

"
TO="#EMAIL#"
SERVER="[YOUR MAIL SERVER]"
PORT="25"
MAILERID="[YOUR DOMAIN NAME]"
TYPE="HTML">

Hope this helps

Larry Juncker
Senior Cold Fusion Developer
Heartland Communications Group, Inc.
[EMAIL PROTECTED]

CONFIDENTIALITY NOTICE
The information contained in this e-mail is intended only for the use of the
individual or entity to which it is addressed.  This e-mail may contain
information that is privileged, confidential, and/or personal. If the reader of
this message is not the intended recipient (or the employee or agent responsible
to deliver it to the intended recipient), you are hereby notified that any
dissemination, distribution, or  copying of this communication is prohibited.
If you have received this communication in error, please notify us at the email
listed above.

-Original Message-
From: Larry Juncker [mailto:[EMAIL PROTECTED]]
Sent: Thursday, May 16, 2002 8:39 AM
To: CF-Talk
Subject: RE: What do you use to send out HTML NEWSLETTERS from your site


I create an html file called newsletter.html and a text file called
newsletter.txt,
then in the body of my CFMAIL I do this:





--[MAILER PARAM NAME]
Content-Type:text/plain; charset=us-ascii



--[MAILER PARAM NAME]
Content-Type:text/x-aol; charset=us-ascii



--[MAILER PARAM NAME]
Content-Type:text/html; charset=us-ascii



--[MAILER PARAM NAME]--


Larry Juncker
Senior Cold Fusion Developer
Heartland Communications Group, Inc.
[EMAIL PROTECTED]

CONFIDENTIALITY NOTICE
The information contained in this e-mail is intended only for the use of the
individual or entity to which it is addressed.  This e-mail may contain
information that is privileged, confidential, and/or personal. If the reader of
this message is not the intended recipient (or the employee or agent responsible
to deliver it to the intended recipient), you are hereby notified that any
dissemination, distribution, or  copying of this communication is prohibited.
If you have received this communication in error, please notify us at the email
listed above.

-Original Message-
From: John Innit [mailto:[EMAIL PROTECTED]]
Sent: Thursday, May 16, 2002 3:56 AM
To: CF-Talk
Subject: What do you use to send out HTML NEWSLETTERS from your site


We're building an application to send out HTML email newsletters, the
application needs to integrate with our SQL database for personalization
and needs to support HTML templates  for each newsletter, as the basic
format and layout of each email stays the same and we just replace the
content which consists of text.

We've tried using the CF_HTMLAREA and CF_ActivEdit tags as WYSIWYG editors
for entering the text into the templates but have found that this bloats up
the HTML and it ends up large and clunky - not really good for email!!.
We're also having problems getting the text to display properly, word
wraps, line spacing etc.

This effort is getting frustrating.

There must be a ton of ways to effectively send out and manage hi quality
HTML emails from our site (I get tons of well composed spam every day) and
it seems like we're trying to reinvent the wheel when the garage is just
next door!!

Can anyone help in recommending a good product or service or source code or
even just an idea or suggestion.

Thanks for your time.










"The only difference between me and a madman is that I'm not mad."
- Salvador Dali (1904-1989)



__
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
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: What do you use to send out HTML NEWSLETTERS from your site

2002-05-16 Thread Larry Juncker

I create an html file called newsletter.html and a text file called
newsletter.txt,
then in the body of my CFMAIL I do this:





--[MAILER PARAM NAME]
Content-Type:text/plain; charset=us-ascii



--[MAILER PARAM NAME]
Content-Type:text/x-aol; charset=us-ascii



--[MAILER PARAM NAME]
Content-Type:text/html; charset=us-ascii



--[MAILER PARAM NAME]--


Larry Juncker
Senior Cold Fusion Developer
Heartland Communications Group, Inc.
[EMAIL PROTECTED]

CONFIDENTIALITY NOTICE
The information contained in this e-mail is intended only for the use of the
individual or entity to which it is addressed.  This e-mail may contain
information that is privileged, confidential, and/or personal. If the reader of
this message is not the intended recipient (or the employee or agent responsible
to deliver it to the intended recipient), you are hereby notified that any
dissemination, distribution, or  copying of this communication is prohibited.
If you have received this communication in error, please notify us at the email
listed above.

-Original Message-
From: John Innit [mailto:[EMAIL PROTECTED]]
Sent: Thursday, May 16, 2002 3:56 AM
To: CF-Talk
Subject: What do you use to send out HTML NEWSLETTERS from your site


We're building an application to send out HTML email newsletters, the
application needs to integrate with our SQL database for personalization
and needs to support HTML templates  for each newsletter, as the basic
format and layout of each email stays the same and we just replace the
content which consists of text.

We've tried using the CF_HTMLAREA and CF_ActivEdit tags as WYSIWYG editors
for entering the text into the templates but have found that this bloats up
the HTML and it ends up large and clunky - not really good for email!!.
We're also having problems getting the text to display properly, word
wraps, line spacing etc.

This effort is getting frustrating.

There must be a ton of ways to effectively send out and manage hi quality
HTML emails from our site (I get tons of well composed spam every day) and
it seems like we're trying to reinvent the wheel when the garage is just
next door!!

Can anyone help in recommending a good product or service or source code or
even just an idea or suggestion.

Thanks for your time.










"The only difference between me and a madman is that I'm not mad."
- Salvador Dali (1904-1989)


__
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
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: What do you use to send out HTML NEWSLETTERS from your site

2002-05-16 Thread Charlie

talk a look at intergrating eWebEditPro from www.ektron.com

we are having success sending HTML email newsletters


- Original Message -
From: "John Innit" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Thursday, May 16, 2002 4:55 AM
Subject: What do you use to send out HTML NEWSLETTERS from your site


> We're building an application to send out HTML email newsletters, the
> application needs to integrate with our SQL database for personalization
> and needs to support HTML templates  for each newsletter, as the basic
> format and layout of each email stays the same and we just replace the
> content which consists of text.
>
> We've tried using the CF_HTMLAREA and CF_ActivEdit tags as WYSIWYG editors
> for entering the text into the templates but have found that this bloats
up
> the HTML and it ends up large and clunky - not really good for email!!.
> We're also having problems getting the text to display properly, word
> wraps, line spacing etc.
>
> This effort is getting frustrating.
>
> There must be a ton of ways to effectively send out and manage hi quality
> HTML emails from our site (I get tons of well composed spam every day) and
> it seems like we're trying to reinvent the wheel when the garage is just
> next door!!
>
> Can anyone help in recommending a good product or service or source code
or
> even just an idea or suggestion.
>
> Thanks for your time.
>
>
>
>
>
>
>
>
>
>
> "The only difference between me and a madman is that I'm not mad."
> - Salvador Dali (1904-1989)
>
> 
__
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



What do you use to send out HTML NEWSLETTERS from your site

2002-05-16 Thread John Innit

We're building an application to send out HTML email newsletters, the 
application needs to integrate with our SQL database for personalization 
and needs to support HTML templates  for each newsletter, as the basic 
format and layout of each email stays the same and we just replace the 
content which consists of text.

We've tried using the CF_HTMLAREA and CF_ActivEdit tags as WYSIWYG editors 
for entering the text into the templates but have found that this bloats up 
the HTML and it ends up large and clunky - not really good for email!!. 
We're also having problems getting the text to display properly, word 
wraps, line spacing etc.

This effort is getting frustrating.

There must be a ton of ways to effectively send out and manage hi quality 
HTML emails from our site (I get tons of well composed spam every day) and 
it seems like we're trying to reinvent the wheel when the garage is just 
next door!!

Can anyone help in recommending a good product or service or source code or 
even just an idea or suggestion.

Thanks for your time.










"The only difference between me and a madman is that I'm not mad."
- Salvador Dali (1904-1989)

__
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: HTML Newsletters again!

2001-12-06 Thread Axiomatique (Vincent)

I have the same problem, but only with some clients. Could it be the
settings in their email application.
The strange part is that some of the client having the problem had a 
fresh
Outlook Express or Outlook installation and didn't change any of the
settings, and some other in the same situation are receiving the 
message
correctly.
One of the client had the problem for a couple of months, and all of 
the
sudden he started to receive the emails correctly.
I am very puzzled by this ?

Vincent Michellod

-Message d'origine-
De : Nick Texidor [mailto:[EMAIL PROTECTED]]
Envoyé : vendredi, 7. décembre 2001 03:00
À : CF-Talk
Objet : RE: HTML Newsletters again!


Weird

I just tried this method too and in my email program.. it is STILL
saying 'Content-Type: text/plain'

I don't understand?!?!?!?!?!?

Is it the sending server that determines the Content-Type, or the
receiving server?  And if it's the receiving server, how does it decide
whether it's text/html or text/plain???



On Fri, 2001-12-07 at 12:21, Scott Weikert wrote:
> Just spotted this thread... my main project at the moment is a 
web-based
> newsletter system, where you can add subscribers and do email 
broadcasts
of
> the newsletter, along with just hitting the website and seeing the
> newsletter.
> 
> One thing I started doing with my broadcasts - to generate the 'guts' 
of
the
> HTML email - is to do a CFHTTP call to my display code, passing in 
the
> appropriate variables for the newsletter/issue/other settings - and 
then
> using the FileContent from THAT in the body of the HTML. I do massage 
it a
> little bit (a bit of custom stuff), but I don't really mess with the 
raw
> structure of it. It seems to work pretty well.
> 
> -Original Message-
> From: Nick Texidor [mailto:[EMAIL PROTECTED]]
> Sent: Thursday, December 06, 2001 3:21 PM
> To: CF-Talk
> Subject: RE: HTML Newsletters again!
> 
> 
> That's what I've been doing...  But some clients still just display 
the
> raw code.
> 
> I had two emails sent from the same script, different template 
though,
> both are set to send HTML, yet one appears as HTML with the images 
etc,
> the other as plain text with all the HTML code?   If I look at the 
email
> headers, one says 'content-type text/html' the other 'content-type
> text/plain'.
> 
> Bizarre?   Can anyone help to shed some light??
> 
> Thanks
> 
> 
> 
> On Fri, 2001-12-07 at 01:09, Larry Juncker wrote:
> > I send my HTML Newsletter as a  in
> the
> > body of my CFMAIL and it seems to work excellent.
> > You want to make sure though that you give the FULL PATH to ANY 
images
in
> > your newsletter or they will appear broken.
> >
> > Hope this helps
> >
> > Larry Juncker
> > Senior Cold Fusion Developer
> > Heartland Communications Group, Inc.
> > [EMAIL PROTECTED]
> >
> > -Original Message-
> > From: Nick Texidor [mailto:[EMAIL PROTECTED]]
> > Sent: Wednesday, December 05, 2001 8:09 PM
> > To: CF-Talk
> > Subject: HTML Newsletters again!
> >
> >
> > Hi,
> >
> > I'm trying to send out an HTML newsletter using the CFMAIL tag.  I 
have
> > specified that the mail type is HTML, however, the email still 
seems to
> > arrive as a bunch of html code, even in email clients that DO 
display
> > html.
> >
> > Can anyone provide any pointers with regards to sending HTML
> > newsletters?
> >
> > Thanks
> >
> > Nick
> >
> >
> >
> 
> 

~~
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: HTML Newsletters again!

2001-12-06 Thread Nick Texidor

Weird

I just tried this method too and in my email program.. it is STILL
saying 'Content-Type: text/plain'

I don't understand?!?!?!?!?!?

Is it the sending server that determines the Content-Type, or the
receiving server?  And if it's the receiving server, how does it decide
whether it's text/html or text/plain???



On Fri, 2001-12-07 at 12:21, Scott Weikert wrote:
> Just spotted this thread... my main project at the moment is a web-based
> newsletter system, where you can add subscribers and do email broadcasts of
> the newsletter, along with just hitting the website and seeing the
> newsletter.
> 
> One thing I started doing with my broadcasts - to generate the 'guts' of the
> HTML email - is to do a CFHTTP call to my display code, passing in the
> appropriate variables for the newsletter/issue/other settings - and then
> using the FileContent from THAT in the body of the HTML. I do massage it a
> little bit (a bit of custom stuff), but I don't really mess with the raw
> structure of it. It seems to work pretty well.
> 
> -Original Message-
> From: Nick Texidor [mailto:[EMAIL PROTECTED]]
> Sent: Thursday, December 06, 2001 3:21 PM
> To: CF-Talk
> Subject: RE: HTML Newsletters again!
> 
> 
> That's what I've been doing...  But some clients still just display the
> raw code.
> 
> I had two emails sent from the same script, different template though,
> both are set to send HTML, yet one appears as HTML with the images etc,
> the other as plain text with all the HTML code?   If I look at the email
> headers, one says 'content-type text/html' the other 'content-type
> text/plain'.
> 
> Bizarre?   Can anyone help to shed some light??
> 
> Thanks
> 
> 
> 
> On Fri, 2001-12-07 at 01:09, Larry Juncker wrote:
> > I send my HTML Newsletter as a  in
> the
> > body of my CFMAIL and it seems to work excellent.
> > You want to make sure though that you give the FULL PATH to ANY images in
> > your newsletter or they will appear broken.
> >
> > Hope this helps
> >
> > Larry Juncker
> > Senior Cold Fusion Developer
> > Heartland Communications Group, Inc.
> > [EMAIL PROTECTED]
> >
> > -Original Message-
> > From: Nick Texidor [mailto:[EMAIL PROTECTED]]
> > Sent: Wednesday, December 05, 2001 8:09 PM
> > To: CF-Talk
> > Subject: HTML Newsletters again!
> >
> >
> > Hi,
> >
> > I'm trying to send out an HTML newsletter using the CFMAIL tag.  I have
> > specified that the mail type is HTML, however, the email still seems to
> > arrive as a bunch of html code, even in email clients that DO display
> > html.
> >
> > Can anyone provide any pointers with regards to sending HTML
> > newsletters?
> >
> > Thanks
> >
> > Nick
> >
> >
> >
> 
> 
~~
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
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: HTML Newsletters again!

2001-12-06 Thread Scott Weikert

Just spotted this thread... my main project at the moment is a web-based
newsletter system, where you can add subscribers and do email broadcasts of
the newsletter, along with just hitting the website and seeing the
newsletter.

One thing I started doing with my broadcasts - to generate the 'guts' of the
HTML email - is to do a CFHTTP call to my display code, passing in the
appropriate variables for the newsletter/issue/other settings - and then
using the FileContent from THAT in the body of the HTML. I do massage it a
little bit (a bit of custom stuff), but I don't really mess with the raw
structure of it. It seems to work pretty well.

-Original Message-
From: Nick Texidor [mailto:[EMAIL PROTECTED]]
Sent: Thursday, December 06, 2001 3:21 PM
To: CF-Talk
Subject: RE: HTML Newsletters again!


That's what I've been doing...  But some clients still just display the
raw code.

I had two emails sent from the same script, different template though,
both are set to send HTML, yet one appears as HTML with the images etc,
the other as plain text with all the HTML code?   If I look at the email
headers, one says 'content-type text/html' the other 'content-type
text/plain'.

Bizarre?   Can anyone help to shed some light??

Thanks



On Fri, 2001-12-07 at 01:09, Larry Juncker wrote:
> I send my HTML Newsletter as a  in
the
> body of my CFMAIL and it seems to work excellent.
> You want to make sure though that you give the FULL PATH to ANY images in
> your newsletter or they will appear broken.
>
> Hope this helps
>
> Larry Juncker
> Senior Cold Fusion Developer
> Heartland Communications Group, Inc.
> [EMAIL PROTECTED]
>
> -Original Message-
> From: Nick Texidor [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, December 05, 2001 8:09 PM
> To: CF-Talk
> Subject: HTML Newsletters again!
>
>
> Hi,
>
> I'm trying to send out an HTML newsletter using the CFMAIL tag.  I have
> specified that the mail type is HTML, however, the email still seems to
> arrive as a bunch of html code, even in email clients that DO display
> html.
>
> Can anyone provide any pointers with regards to sending HTML
> newsletters?
>
> Thanks
>
> Nick
>
>
>

~~
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: HTML Newsletters again!

2001-12-06 Thread Nick Texidor

That's what I've been doing...  But some clients still just display the
raw code.

I had two emails sent from the same script, different template though,
both are set to send HTML, yet one appears as HTML with the images etc,
the other as plain text with all the HTML code?   If I look at the email
headers, one says 'content-type text/html' the other 'content-type
text/plain'.

Bizarre?   Can anyone help to shed some light??

Thanks



On Fri, 2001-12-07 at 01:09, Larry Juncker wrote:
> I send my HTML Newsletter as a  in the
> body of my CFMAIL and it seems to work excellent.
> You want to make sure though that you give the FULL PATH to ANY images in
> your newsletter or they will appear broken.
> 
> Hope this helps
> 
> Larry Juncker
> Senior Cold Fusion Developer
> Heartland Communications Group, Inc.
> [EMAIL PROTECTED]
> 
> -Original Message-
> From: Nick Texidor [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, December 05, 2001 8:09 PM
> To: CF-Talk
> Subject: HTML Newsletters again!
> 
> 
> Hi,
> 
> I'm trying to send out an HTML newsletter using the CFMAIL tag.  I have
> specified that the mail type is HTML, however, the email still seems to
> arrive as a bunch of html code, even in email clients that DO display
> html.
> 
> Can anyone provide any pointers with regards to sending HTML
> newsletters?
> 
> Thanks
> 
> Nick
> 
> 
> 
~~
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: HTML Newsletters again!

2001-12-06 Thread Larry Juncker

I send my HTML Newsletter as a  in the
body of my CFMAIL and it seems to work excellent.
You want to make sure though that you give the FULL PATH to ANY images in
your newsletter or they will appear broken.

Hope this helps

Larry Juncker
Senior Cold Fusion Developer
Heartland Communications Group, Inc.
[EMAIL PROTECTED]

-Original Message-
From: Nick Texidor [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, December 05, 2001 8:09 PM
To: CF-Talk
Subject: HTML Newsletters again!


Hi,

I'm trying to send out an HTML newsletter using the CFMAIL tag.  I have
specified that the mail type is HTML, however, the email still seems to
arrive as a bunch of html code, even in email clients that DO display
html.

Can anyone provide any pointers with regards to sending HTML
newsletters?

Thanks

Nick


~~
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



HTML Newsletters again!

2001-12-05 Thread Nick Texidor

Hi, 

I'm trying to send out an HTML newsletter using the CFMAIL tag.  I have
specified that the mail type is HTML, however, the email still seems to
arrive as a bunch of html code, even in email clients that DO display
html.

Can anyone provide any pointers with regards to sending HTML
newsletters?

Thanks

Nick

~~
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: HTML Newsletters

2001-08-28 Thread Agus Setiawan Basuni

AFAIK,
on CFMAIL use type=html,
then you can use your Queries.
SO far, I didnt have a problem doing that.


Nick Texidor wrote:

> I¹m trying to send an HTML newsletter via the CFMAIL tag but am having a few
> problems.
>
> If I simply enter all the HTML code in the tag, it works ok.  But I¹d like
> to use an existing CF page, so that all the Queries run and then send the
> resulting content.  Can this be done, or would I need to embed all the HTML
> code from the template into the CFMail tag.
>
> Should I maybe use CFHTTP to run that newsletter.cfm page to allow all the
> queries to process, and then send the resulting output??


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: HTML Newsletters

2001-08-28 Thread Nick Texidor

Thanks to those that responded.

I actually found an easier way than using CFHTTP, Howie.  Using Tom's
suggestion of using  in the body of CFMAIL.  This meant that I
could use that same page, the only thing I did differently was to use
 as opposed to  to put the records onto the page that was
being included.

Thanks again

N

 

on 29/8/01 12:36 PM, Howie Hamlin at [EMAIL PROTECTED] wrote:

> Use CFHTTP to grab the page from your server and then take that content and
> use it in the newsletter...
> 
> HTH,
> 
> Howie Hamlin - inFusion Project Manager
> On-Line Data Solutions, Inc.
> www.CoolFusion.com
> 631-737-4668 x101
> inFusion Mail Server (iMS) - The Intelligent Mail Server
> Join the DevCon community at www.coolfusion.com/devcon
> 
> - Original Message -
> From: "Nick Texidor" <[EMAIL PROTECTED]>
> To: "CF-Talk" <[EMAIL PROTECTED]>
> Sent: Tuesday, August 28, 2001 7:28 PM
> Subject: HTML Newsletters
> 
> 
>> I¹m trying to send an HTML newsletter via the CFMAIL tag but am having a few
>> problems.
>> 
>> If I simply enter all the HTML code in the tag, it works ok.  But I¹d like
>> to use an existing CF page, so that all the Queries run and then send the
>> resulting content.  Can this be done, or would I need to embed all the HTML
>> code from the template into the CFMail tag.
>> 
>> Should I maybe use CFHTTP to run that newsletter.cfm page to allow all the
>> queries to process, and then send the resulting output??
>> 
>> Thanks for any help/suggestions
>> 
>> N
>> 
>> 
>> 
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: HTML Newsletters

2001-08-28 Thread Howie Hamlin

Use CFHTTP to grab the page from your server and then take that content and use it in 
the newsletter...

HTH,

Howie Hamlin - inFusion Project Manager
On-Line Data Solutions, Inc.
www.CoolFusion.com
631-737-4668 x101
inFusion Mail Server (iMS) - The Intelligent Mail Server
Join the DevCon community at www.coolfusion.com/devcon

- Original Message -
From: "Nick Texidor" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Tuesday, August 28, 2001 7:28 PM
Subject: HTML Newsletters


> I¹m trying to send an HTML newsletter via the CFMAIL tag but am having a few
> problems.
>
> If I simply enter all the HTML code in the tag, it works ok.  But I¹d like
> to use an existing CF page, so that all the Queries run and then send the
> resulting content.  Can this be done, or would I need to embed all the HTML
> code from the template into the CFMail tag.
>
> Should I maybe use CFHTTP to run that newsletter.cfm page to allow all the
> queries to process, and then send the resulting output??
>
> Thanks for any help/suggestions
>
> N
>
>
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: HTML Newsletters

2001-08-28 Thread tom muck

Your template has to use  instead of :


SELECT * FROM dbo.Customers


Hello #recordset1.name#


and on mytemp.cfm


SELECT * FROM dbo.Customers

Here is your order dude:

#Recordset2.orderdetail#


tom


"Nick Texidor" <[EMAIL PROTECTED]> wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> Thanks Tom... I hadn't thought of using CFInclude... Trouble is, I want
the
> included file to process the queries!!   And that bit doesn't work.  I
have
> a page that when displayed is the newsletter I want to send... I also want
> to use the same page to send to subscribers... It's the queries that are
> causing me the problems!  :^)
>
>
> on 29/8/01 10:48 AM, tom muck at [EMAIL PROTECTED] wrote:
>
> > That's not a problem.  Have you tried it?  You can't use a query
attribute
> > of  tag if you do it that way, but you can use a  and
send
> > one  at a time.  It's actually just as fast.  I always use a
> >  to include the coldfusion page as the body.
> >
> > tom
> >
> > "Nick Texidor" <[EMAIL PROTECTED]> wrote in message
> > [EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> >> I¹m trying to send an HTML newsletter via the CFMAIL tag but am having
a
> > few
> >> problems.
> >>
> >> If I simply enter all the HTML code in the tag, it works ok.  But I¹d
like
> >> to use an existing CF page, so that all the Queries run and then send
the
> >> resulting content.  Can this be done, or would I need to embed all the
> > HTML
> >> code from the template into the CFMail tag.
> >>
> >> Should I maybe use CFHTTP to run that newsletter.cfm page to allow all
the
> >> queries to process, and then send the resulting output??
> >>
> >> Thanks for any help/suggestions
> >>
> >> N
> >>
> >>
> >>
> >
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: HTML Newsletters

2001-08-28 Thread Nick Texidor

Thanks Tom... I hadn't thought of using CFInclude... Trouble is, I want the
included file to process the queries!!   And that bit doesn't work.  I have
a page that when displayed is the newsletter I want to send... I also want
to use the same page to send to subscribers... It's the queries that are
causing me the problems!  :^)


on 29/8/01 10:48 AM, tom muck at [EMAIL PROTECTED] wrote:

> That's not a problem.  Have you tried it?  You can't use a query attribute
> of  tag if you do it that way, but you can use a  and send
> one  at a time.  It's actually just as fast.  I always use a
>  to include the coldfusion page as the body.
> 
> tom
> 
> "Nick Texidor" <[EMAIL PROTECTED]> wrote in message
> [EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
>> I¹m trying to send an HTML newsletter via the CFMAIL tag but am having a
> few
>> problems.
>> 
>> If I simply enter all the HTML code in the tag, it works ok.  But I¹d like
>> to use an existing CF page, so that all the Queries run and then send the
>> resulting content.  Can this be done, or would I need to embed all the
> HTML
>> code from the template into the CFMail tag.
>> 
>> Should I maybe use CFHTTP to run that newsletter.cfm page to allow all the
>> queries to process, and then send the resulting output??
>> 
>> Thanks for any help/suggestions
>> 
>> N
>> 
>> 
>> 
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: HTML Newsletters

2001-08-28 Thread tom muck

That's not a problem.  Have you tried it?  You can't use a query attribute
of  tag if you do it that way, but you can use a  and send
one  at a time.  It's actually just as fast.  I always use a
 to include the coldfusion page as the body.

tom

"Nick Texidor" <[EMAIL PROTECTED]> wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> I¹m trying to send an HTML newsletter via the CFMAIL tag but am having a
few
> problems.
>
> If I simply enter all the HTML code in the tag, it works ok.  But I¹d like
> to use an existing CF page, so that all the Queries run and then send the
> resulting content.  Can this be done, or would I need to embed all the
HTML
> code from the template into the CFMail tag.
>
> Should I maybe use CFHTTP to run that newsletter.cfm page to allow all the
> queries to process, and then send the resulting output??
>
> Thanks for any help/suggestions
>
> N
>
>
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



HTML Newsletters

2001-08-28 Thread Nick Texidor

I¹m trying to send an HTML newsletter via the CFMAIL tag but am having a few
problems.

If I simply enter all the HTML code in the tag, it works ok.  But I¹d like
to use an existing CF page, so that all the Queries run and then send the
resulting content.  Can this be done, or would I need to embed all the HTML
code from the template into the CFMail tag.

Should I maybe use CFHTTP to run that newsletter.cfm page to allow all the
queries to process, and then send the resulting output??

Thanks for any help/suggestions

N 


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists