RE: CFMail Question

2013-07-03 Thread Mark A Kruger

Glad to help :)

-Original Message-
From: Robert Sneed [mailto:robertsn...@rhsneed.com] 
Sent: Wednesday, July 03, 2013 10:49 AM
To: cf-talk
Subject: Re: CFMail Question


Thanks a lot for your help Mark!
The following suggestion worked perfectly.
structKeyExists(form,'maillist')>YesNo

Robert

>Robert,
>
>
>Since the box is either "checked" or "Unchecked" that's all you need. 
>You don't really need to worry about the value at all. If the form 
>field shows up then the user checked the box. That's how checkboxes work.
>
>Subscribe To Newsletter? structKetyExists(form,'maillist')>YesNo
>
>Notice I use structkey exists. Also you do not need pound signs around 
>#form.mailist# unless you intend for it to be displayed :)
>
>Here's another approach for you.
>
>In the checkbox attributes set value="1" (instead of zero). Then 
>wherever you set up default values add this cfparam.
>
>
>
>
>
>Then you can leverage the YesNoFormat(  ) function of CF... 
>
>Subscribe To e-Newsletter?  #yesNoFormat(form.maillist)#
>
>
>Good luck!
>
>
>
>Mark Kruger - CFG
>CF Webtools
>www.cfwebtools.com
>www.coldfusionmuse.com
>O: 402.932.3318
>E: mkru...@cfwebtools.com
>Skype: markakruger
>
>
>
>
>I hope someone can help me with this. I'm kind of stuck on the
conditional..
>
>I have a newsletter signup form that includes a check box that is check 
>by default.
>
>tabindex="14" type="checkbox" value="0" width="5px" />class="checkbox">I would like to receive your 
>e-newsletter.
>
>I'm trying to email the answer, yes or no, based on whether or not the 
>box is checked. Here is the conditional code between my 
tags..
>
>Subscribe to e-newsletter? Len(form.mailList)>Compare(#form.mailList#,"0")>yesno
>
>If someone checks the box I get the sentence "Subscribe to e-newsletter?
>Yes" in an email. If someone does not check the box I get "Subscribe to 
>e-newsletter?" I can't figure out how to get the "No" to show up in the 
>email when the box is not checked.
>
>I feal like I'm close here but just can't seem to get the "No" answer 
>emailed when the box is not checked.
>
>Thanks a lot for your help!!



~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:356125
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: CFMail Question

2013-07-03 Thread Robert Sneed

Thanks a lot for your help Mark!
The following suggestion worked perfectly.
structKeyExists(form,'maillist')>YesNo

Robert

>Robert,
>
>
>Since the box is either "checked" or "Unchecked" that's all you need. You
>don't really need to worry about the value at all. If the form field shows
>up then the user checked the box. That's how checkboxes work.
>
>Subscribe To Newsletter? structKetyExists(form,'maillist')>YesNo
>
>Notice I use structkey exists. Also you do not need pound signs around
>#form.mailist# unless you intend for it to be displayed :)
>
>Here's another approach for you.
>
>In the checkbox attributes set value="1" (instead of zero). Then wherever
>you set up default values add this cfparam.
>
>
>
>
>
>Then you can leverage the YesNoFormat(  ) function of CF... 
>
>Subscribe To e-Newsletter?  #yesNoFormat(form.maillist)#
>
>
>Good luck!
>
>
>
>Mark Kruger - CFG
>CF Webtools
>www.cfwebtools.com
>www.coldfusionmuse.com
>O: 402.932.3318
>E: mkru...@cfwebtools.com
>Skype: markakruger
>
>
>
>
>I hope someone can help me with this. I'm kind of stuck on the conditional..
>
>I have a newsletter signup form that includes a check box that is check by
>default.
>
>tabindex="14" type="checkbox" value="0" width="5px" />class="checkbox">I would like to receive your e-newsletter.
>
>I'm trying to email the answer, yes or no, based on whether or not the box
>is checked. Here is the conditional code between my  tags..
>
>Subscribe to e-newsletter? Len(form.mailList)>Compare(#form.mailList#,"0")>yesno
>
>If someone checks the box I get the sentence "Subscribe to e-newsletter?
>Yes" in an email. If someone does not check the box I get "Subscribe to
>e-newsletter?" I can't figure out how to get the "No" to show up in the
>email when the box is not checked.
>
>I feal like I'm close here but just can't seem to get the "No" answer
>emailed when the box is not checked.
>
>Thanks a lot for your help!!

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:356122
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: CFMail Question

2013-06-28 Thread Mark A Kruger

Robert,


Since the box is either "checked" or "Unchecked" that's all you need. You
don't really need to worry about the value at all. If the form field shows
up then the user checked the box. That's how checkboxes work.

Subscribe To Newsletter? YesNo

Notice I use structkey exists. Also you do not need pound signs around
#form.mailist# unless you intend for it to be displayed :)

Here's another approach for you.

In the checkbox attributes set value="1" (instead of zero). Then wherever
you set up default values add this cfparam.





Then you can leverage the YesNoFormat(  ) function of CF... 

Subscribe To e-Newsletter?  #yesNoFormat(form.maillist)#


Good luck!



Mark Kruger - CFG
CF Webtools
www.cfwebtools.com
www.coldfusionmuse.com
O: 402.932.3318
E: mkru...@cfwebtools.com
Skype: markakruger




-Original Message-
From: Robert Sneed [mailto:robertsn...@rhsneed.com] 
Sent: Friday, June 28, 2013 8:17 AM
To: cf-talk
Subject: CFMail Question


I hope someone can help me with this. I'm kind of stuck on the conditional.

I have a newsletter signup form that includes a check box that is check by
default.

I would like to receive your e-newsletter.

I'm trying to email the answer, yes or no, based on whether or not the box
is checked. Here is the conditional code between my  tags.

Subscribe to e-newsletter? yesno

If someone checks the box I get the sentence "Subscribe to e-newsletter?
Yes" in an email. If someone does not check the box I get "Subscribe to
e-newsletter?" I can't figure out how to get the "No" to show up in the
email when the box is not checked.

I feal like I'm close here but just can't seem to get the "No" answer
emailed when the box is not checked.

Thanks a lot for your help!! 



~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:356092
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: CFMail Question

2013-06-28 Thread Justin Scott

By default the form field will only exist if the checkbox is checked,
so you could do:

Subscribe to newsletter?
#yesNoFormat(isDefined("form.mailList"))#

As an aside, in the anti-spam and e-mail deliverability communities it
is generally considered a bad practice to have these sorts of options
checked by default.


-Justin



On Fri, Jun 28, 2013 at 9:16 AM, Robert Sneed  wrote:
>
> I hope someone can help me with this. I'm kind of stuck on the conditional.
>
> I have a newsletter signup form that includes a check box that is check by 
> default.
>
>  tabindex="14" type="checkbox" value="0" width="5px" /> class="checkbox">I would like to receive your e-newsletter.
>
> I'm trying to email the answer, yes or no, based on whether or not the box is 
> checked. Here is the conditional code between my  tags.
>
> Subscribe to e-newsletter?  Len(form.mailList)> Compare(#form.mailList#,"0")>yesno
>
> If someone checks the box I get the sentence "Subscribe to e-newsletter? Yes" 
> in an email. If someone does not check the box I get "Subscribe to 
> e-newsletter?" I can't figure out how to get the "No" to show up in the email 
> when the box is not checked.
>
> I feal like I'm close here but just can't seem to get the "No" answer emailed 
> when the box is not checked.
>
> Thanks a lot for your help!!
>
> 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:356091
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


CFMail Question

2013-06-28 Thread Robert Sneed

I hope someone can help me with this. I'm kind of stuck on the conditional.

I have a newsletter signup form that includes a check box that is check by 
default.

I 
would like to receive your e-newsletter.

I'm trying to email the answer, yes or no, based on whether or not the box is 
checked. Here is the conditional code between my  tags.

Subscribe to e-newsletter? yesno

If someone checks the box I get the sentence "Subscribe to e-newsletter? Yes" 
in an email. If someone does not check the box I get "Subscribe to 
e-newsletter?" I can't figure out how to get the "No" to show up in the email 
when the box is not checked.

I feal like I'm close here but just can't seem to get the "No" answer emailed 
when the box is not checked.

Thanks a lot for your help!! 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:356090
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: cfmail question

2008-01-01 Thread Seamus Campbell
brilliant - many thanks

Seamus

>> So how can I get multiple records in the one cfmail.
>
>Use CFLOOP within your CFMAIL tag.
>
>Dave Watts, CTO, Fig Leaf Software 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;160198600;22374440;w

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:295688
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: cfmail question

2008-01-01 Thread Dave Watts
> So how can I get multiple records in the one cfmail.

Use CFLOOP within your CFMAIL tag.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/

Fig Leaf Software provides the highest caliber vendor-authorized
instruction at our training centers in Washington DC, Atlanta,
Chicago, Baltimore, Northern Virginia, or on-site at your location.
Visit http://training.figleaf.com/ for more information!

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;160198600;22374440;w

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:295679
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: cfmail question

2008-01-01 Thread Seamus Campbell
Hi and thanks. But if I do that I only get one record from the query and there 
are usually multipple records.
If do this:

#stock_id# - #author# #title# - 
#number_of_books# - #DollarFormat(price)#  #br#

inside the cfmail tag I get an "Invalid tag nesting configuration" error.

So how can I get multiple records in the one cfmail.

Ta

Seamus

>You've passed a query to cfmail so it acts the same as:
>
>
>
>
>
>Try removing the query attribute.


~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;160198600;22374440;w

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:295675
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: cfmail question

2008-01-01 Thread Adrian Lynch
You've passed a query to cfmail so it acts the same as:





Try removing the query attribute.

Adrian
http://www.adrianlynch.co.uk/

-Original Message-
From: Seamus Campbell
Sent: 02 January 2008 00:15
To: CF-Talk
Subject: cfmail question


Hi

I have the following code (at end of this email)
I want to send one email to admin_email but the code below sends multiple
emails - one for each record produced by the query.
I can't see why this is happening - any help gratefully received


SELECT token, stock_id, title, number_of_books, price, author
FROM tbl_shopping_cart_orders
WHERE token = '#token_ID#'








#stock_id# - #author# #title# - #number_of_books# - #DollarFormat(price)#
#br#




~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;160198600;22374440;w

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:295674
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


cfmail question

2008-01-01 Thread Seamus Campbell
Hi

I have the following code (at end of this email)
I want to send one email to admin_email but the code below sends multiple 
emails - one for each record produced by the query. 
I can't see why this is happening - any help gratefully received


SELECT token, stock_id, title, number_of_books, price, author
FROM tbl_shopping_cart_orders
WHERE token = '#token_ID#'








#stock_id# - #author# #title# - #number_of_books# - #DollarFormat(price)#  #br#

 


~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;160198600;22374440;w

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:295673
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: cfmail question

2007-03-29 Thread Justin Scott
> I am using cfmail to send a zip file created during the code. 
> I am storing the file and the zipped file in a folder. Now 
> after sending an email, i want to delete the file and the 
> zipped file. But when i do cffile action=delete after sending 
> the email ( I mean after the code that sends an email)it 
> doesnt work. Only if i dont delete the file and zipped file 
> it works. I have to delete the files, they are on ftp server 
> and everyday there will be a lot of files created and zipped. 
> How can I delete them as well as email them?

The CFMAIL tag doesn't send the message immediately, but writes a file
to the ColdFusion mail\spool folder.  It may take anywhere from several
seconds to several hours for ColdFusion to actually send the message
depending on volume.  The file needs to exist when it actually gets
around to sending the message in order for the attachment to work.  As
someone else mentioned, you could keep a list of the generated files
somewhere and run a process nightly to clean them up.

Another option would be to disable mail queuing in the ColdFusion
administrator so that the CFMAIL tag will send the message as part of
the page process instead of writing to the queue.  That would allow you
to delete the file immediately, but is not recommended as you will take
a significant performance hit.


-Justin Scott | GravityFree
 Client Care Special Forces Unit

1960 Stickney Point Road, Suite 210
Sarasota | FL | 34231 | 800.207.4431
941.927.7674 x115 | f 941.923.5429
www.GravityFree.com

~|
ColdFusion MX7 by Adobe®
Dyncamically transform webcontent into Adobe PDF with new ColdFusion MX7. 
Free Trial. http://www.adobe.com/products/coldfusion?sdid=RVJV

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:274138
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: cfmail question

2007-03-29 Thread Adkins, Randy
Run a clean up process nightly to remove the files or maybe an hourly
basis depending on the number of files created during the timeframe.
 

-Original Message-
From: Deepak Gupta [mailto:[EMAIL PROTECTED] 
Sent: Thursday, March 29, 2007 4:27 PM
To: CF-Talk
Subject: cfmail question

Hi
I am using cfmail to send a zip file created during the code. I am
storing the file and the zipped file in a folder. Now after sending an
email, i want to delete the file and the zipped file. But when i do
cffile action=delete after sending the email ( I mean after the code
that sends an email)it doesnt work. Only if i dont delete the file and
zipped file it works. I have to delete the files, they are on ftp server
and everyday there will be a lot of files created and zipped. How can I
delete them as well as email them?

Can anyone help with this??/



~|
Upgrade to Adobe ColdFusion MX7
Experience Flex 2 & MX7 integration & create powerful cross-platform RIAs
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJQ 

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:274135
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


cfmail question

2007-03-29 Thread Deepak Gupta
Hi
I am using cfmail to send a zip file created during the code. I am storing the 
file and the zipped file in a folder. Now after sending an email, i want to 
delete the file and the zipped file. But when i do cffile action=delete after 
sending the email ( I mean after the code that sends an email)it doesnt work. 
Only if i dont delete the file and zipped file it works. I have to delete the 
files, they are on ftp server and everyday there will be a lot of files created 
and zipped. How can I delete them as well as email them?

Can anyone help with this??/

~|
Upgrade to Adobe ColdFusion MX7
The most significant release in over 10 years. Upgrade & see new features.
http://www.adobe.com/products/coldfusion?sdid=RVJR

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:274133
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: simple cfmail question...

2006-03-10 Thread Charlie Hanlon
Thanks Jochem.



- Original Message - 
From: "Jochem van Dieten" <[EMAIL PROTECTED]>
To: "CF-Talk" 
Sent: Friday, March 10, 2006 10:06 AM
Subject: Re: simple cfmail question...


> Charlie Hanlon said:
>> That's how I learned.  I'll assume that you're implying that the
>>  is unneccessary.  Is this so?
>
> Just put it in the From. If the friendly name you want the user to see
> has any characters other then alfanumeric and spaces, enclose the
> friendly name in double quotes, i.e.:
>
> GOOD: 
> BAD:  
> GOOD: " ...>
>
> Jochem
>
>
>
>
> 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:235027
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: simple cfmail question...

2006-03-10 Thread Jochem van Dieten
Charlie Hanlon said:
> That's how I learned.  I'll assume that you're implying that the
>  is unneccessary.  Is this so?

Just put it in the From. If the friendly name you want the user to see
has any characters other then alfanumeric and spaces, enclose the
friendly name in double quotes, i.e.:

GOOD: 
BAD:  
GOOD: " ...>

Jochem




~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:235025
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: simple cfmail question...

2006-03-10 Thread Mingo Hagen
Well, 'unneccessary' I don't know, I just don't see a reason why it 
should be there. But If you have a good one, please do share!
m.



Charlie Hanlon wrote:

>That's how I learned.  I'll assume that you're implying that the 
> is unneccessary.  Is this so?
>
>thanks,
>charlie hanlon
>
>
>- Original Message - 
>From: "Mingo Hagen" <[EMAIL PROTECTED]>
>To: "CF-Talk" 
>Sent: Friday, March 10, 2006 9:53 AM
>Subject: Re: simple cfmail question...
>
>
>  
>
>>Charlie Hanlon wrote:
>>
>>
>>
>>>This is usually how I code it
>>>
>>>>>   from="[EMAIL PROTECTED]"
>>>   subject=""
>>>   >
>>>
>>>   
>>>
>>>
>>> 
>>>
>>>
>>>  
>>>
>>wow, and why?
>>
>>
>>
>>
>>
>>
>
>

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:235023
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: simple cfmail question...

2006-03-10 Thread Charlie Hanlon
That's how I learned.  I'll assume that you're implying that the 
 is unneccessary.  Is this so?

thanks,
charlie hanlon


- Original Message - 
From: "Mingo Hagen" <[EMAIL PROTECTED]>
To: "CF-Talk" 
Sent: Friday, March 10, 2006 9:53 AM
Subject: Re: simple cfmail question...


> Charlie Hanlon wrote:
>
>>This is usually how I code it
>>
>>>from="[EMAIL PROTECTED]"
>>subject=""
>>>
>>
>>
>>
>>
>>  
>>
>>
> wow, and why?
>
>
>
> 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:235018
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: simple cfmail question...

2006-03-10 Thread Mingo Hagen
Charlie Hanlon wrote:

>This is usually how I code it
>
>from="[EMAIL PROTECTED]"
>subject=""
>>
>
>
>
>
>  
>  
>
wow, and why?



~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:235014
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: simple cfmail question...

2006-03-10 Thread Charlie Hanlon
This is usually how I code it






  

hth
charlie hanlon


- Original Message - 
From: "Mingo Hagen" <[EMAIL PROTECTED]>
To: "CF-Talk" 
Sent: Friday, March 10, 2006 9:34 AM
Subject: Re: simple cfmail question...


> what he said
>
> Robert Redpath wrote:
>
>>from="Tom Jones <[EMAIL PROTECTED]>"
>>
>>
>>
>>From: Che Vilnonis [mailto:[EMAIL PROTECTED]
>>Sent: Fri 3/10/2006 9:22 AM
>>To: CF-Talk
>>Subject: simple cfmail question...
>>
>>
>>
>>User = Tom Jones
>>User Email = [EMAIL PROTECTED]
>>
>>Using the cfmail tag, how do I write the "from=" line so that when I get 
>>an
>>email from Tom that the "From" line in my email client says Tom Jones and
>>not [EMAIL PROTECTED] Am I making sense?
>>
>>Thanks, Che.
>>
>>
>>
>>
>>
>
> 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:235009
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: simple cfmail question...

2006-03-10 Thread Che Vilnonis
thanks. wasn't sure if it were that simple or not.

-Original Message-
From: Mingo Hagen [mailto:[EMAIL PROTECTED]
Sent: Friday, March 10, 2006 9:35 AM
To: CF-Talk
Subject: Re: simple cfmail question...


what he said

Robert Redpath wrote:

>from="Tom Jones <[EMAIL PROTECTED]>"
>
>
>
>From: Che Vilnonis [mailto:[EMAIL PROTECTED]
>Sent: Fri 3/10/2006 9:22 AM
>To: CF-Talk
>Subject: simple cfmail question...
>
>
>
>User = Tom Jones
>User Email = [EMAIL PROTECTED]
>
>Using the cfmail tag, how do I write the "from=" line so that when I get an
>email from Tom that the "From" line in my email client says Tom Jones and
>not [EMAIL PROTECTED] Am I making sense?
>
>Thanks, Che.
>
>
>
>
>



~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:235008
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: simple cfmail question...

2006-03-10 Thread Mingo Hagen
what he said

Robert Redpath wrote:

>from="Tom Jones <[EMAIL PROTECTED]>"
>
>
>
>From: Che Vilnonis [mailto:[EMAIL PROTECTED]
>Sent: Fri 3/10/2006 9:22 AM
>To: CF-Talk
>Subject: simple cfmail question...
>
>
>
>User = Tom Jones
>User Email = [EMAIL PROTECTED]
>
>Using the cfmail tag, how do I write the "from=" line so that when I get an
>email from Tom that the "From" line in my email client says Tom Jones and
>not [EMAIL PROTECTED] Am I making sense?
>
>Thanks, Che.
>
>
>
>
>

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:235005
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: simple cfmail question...

2006-03-10 Thread Robert Redpath
from="Tom Jones <[EMAIL PROTECTED]>"



From: Che Vilnonis [mailto:[EMAIL PROTECTED]
Sent: Fri 3/10/2006 9:22 AM
To: CF-Talk
Subject: simple cfmail question...



User = Tom Jones
User Email = [EMAIL PROTECTED]

Using the cfmail tag, how do I write the "from=" line so that when I get an
email from Tom that the "From" line in my email client says Tom Jones and
not [EMAIL PROTECTED] Am I making sense?

Thanks, Che.




~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:235004
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: simple cfmail question...

2006-03-10 Thread Mingo Hagen
I think this is what you mean?



Mingo.


Che Vilnonis wrote:

>User = Tom Jones
>User Email = [EMAIL PROTECTED]
>
>Using the cfmail tag, how do I write the "from=" line so that when I get an
>email from Tom that the "From" line in my email client says Tom Jones and
>not [EMAIL PROTECTED] Am I making sense?
>
>Thanks, Che.
>
>
>

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:235002
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


simple cfmail question...

2006-03-10 Thread Che Vilnonis
User = Tom Jones
User Email = [EMAIL PROTECTED]

Using the cfmail tag, how do I write the "from=" line so that when I get an
email from Tom that the "From" line in my email client says Tom Jones and
not [EMAIL PROTECTED] Am I making sense?

Thanks, Che.


~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:234999
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


CFMail question.... Encoding base64, 7bit

2003-01-17 Thread Dan Blickensderfer
Does anyone know how to change the Encoding format within a cfmail sent
message.  It's currently sending both base64 and 7bit.  I would only like to
send 7bit.

I have an email generated with a picture attached.  Here is what I have in
my cfmail tag.



#form.message#



When the email is sent here is the message header that it's sending.



x-cf-version: 4.5.0
x-cf-server: mail.tusco.net
x-cf-port: 25
x-cf-timeout: 60
x-cf-from: emailaddress
x-cf-to: emailaddress
Content-Type: multipart/mixed; boundary=---2e323f522e323f52
Date: Fri, 17 Jan 2003 23:35:27 -0500
From: emailaddress
Mime-version: 1.0
Subject: Subject line...
To: emailaddress
This is a multi-part message in MIME format.
-2e323f522e323f52
Content-Type: text/plain
Content-Transfer-Encoding: 7bit
Test message

-2e323f522e323f52

Content-Type: image/jpeg
Content-Disposition: attachment; filename="17376-2.jpg"
Content-Transfer-Encoding: base64
/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDAAgGBgcGBQgHBwcJCQgKDBQNDAsLDBkSEw8UHRof

-2e323f522e323f52--



~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4




RE: HTML cfmail question

2002-05-01 Thread Craig Thomas

Also remember to use absolute links as opposed to relative.

-Craig Thomas

__
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 cfmail question

2002-05-01 Thread BEN MORRIS

In my experience, you want to use the best and safest html you can, and include the 
 tags.  Avoid complicated tables and reliance on CSS.  Certainly no JavaScript.

Groupwise can really mangle messages.  Also, use target="_blank" if you can in all of 
your links.

>>> "Jim McAtee" <[EMAIL PROTECTED]> 05/01/02 02:57PM >>>
When using cfmail type="html", is it best to include a full set of html tags
(, , ), as you'd use within a web
page, or is it better to omit them?  I'm thinking of what works best with
html-capable email clients, as I only have Outlook and OE to test with.

Jim


__
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
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 cfmail question

2002-05-01 Thread Craig Thomas

You need (should) use well formed html for HTML email clients to render the
HTML correctly.  As with different browser's, different email clients may or
may not compensate for mal-formed HTML.

-Craig Thomas


__
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
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 cfmail question

2002-05-01 Thread Jim McAtee

When using cfmail type="html", is it best to include a full set of html tags
(, , ), as you'd use within a web
page, or is it better to omit them?  I'm thinking of what works best with
html-capable email clients, as I only have Outlook and OE to test with.

Jim

__
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: CFMail Question

2001-11-03 Thread tom muck

You can use either the query attribute of CFMAIL or a CFLOOP tag -- they
both work in the same way with the same speed.  Don't do both though -- that
may be what you did before and created two loops.

tom

"Ben Densmore" <[EMAIL PROTECTED]> wrote in message
013a01c164a8$bed10fe0$082e9318@metropolis">news:013a01c164a8$bed10fe0$082e9318@metropolis...
> Is it possible to use CFMail inside of a cfloop tag that calls a query?
> I am doing that to send out 100 emails and it doesn't seem to do
> anything. I'm kind of nervous to use the query attribute of the cfmail
> tag because I think I remember I tried it once a long time ago and it
> sent 100 emails to each of the people I sent it to. Is this true?

~~
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: CFMail Question

2001-11-03 Thread W Luke

Ben,

Post us some code.  I think what you're asking is possible, but it would be
easier if we could see exactly what you're trying to do.

As for the query attrib of cfmail, this works fine - but in your case, you
should use "distinct COLUMN" in your query, for example:

SELECT distinct email_address FROM MyTable

This would select unique records and email addresses, and stop you from
sending duplicate emails to each member.

HTH

Will
--
http://www.localbounty.com/r.cfm?i=msg - free local and national advertising

- Original Message -
From: "Ben Densmore" <[EMAIL PROTECTED]>
Newsgroups: gradwell.lists.cftalk
Sent: Saturday, November 03, 2001 8:48 PM
Subject: CFMail Question


> Is it possible to use CFMail inside of a cfloop tag that calls a query?
> I am doing that to send out 100 emails and it doesn't seem to do
> anything. I'm kind of nervous to use the query attribute of the cfmail
> tag because I think I remember I tried it once a long time ago and it
> sent 100 emails to each of the people I sent it to. Is this true?
>
> Thanks,
> Ben
>
> 
~~
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



CFMail Question

2001-11-03 Thread Ben Densmore

Is it possible to use CFMail inside of a cfloop tag that calls a query? 
I am doing that to send out 100 emails and it doesn't seem to do 
anything. I'm kind of nervous to use the query attribute of the cfmail 
tag because I think I remember I tried it once a long time ago and it 
sent 100 emails to each of the people I sent it to. Is this true?

Thanks,
Ben

~~
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: CFMAIL question

2001-09-14 Thread Kamie Curfman

Have you tried separating the addresses with commas instead of semicolons?  Is the 
email getting to both [EMAIL PROTECTED] and [EMAIL PROTECTED] or just
the latter?

Kamie

Joshua Miller wrote:

> Ok, I have a few addresses in the CC: of a cfmail tag, here's the exact
> code:
>
>  cc="[EMAIL PROTECTED];[EMAIL PROTECTED];[EMAIL PROTECTED]"
> from="[EMAIL PROTECTED]"
> ...
>
> When the email arrives, it has the CC: addresses of:
>
> leslie%ohiopia.com;[EMAIL PROTECTED];[EMAIL PROTECTED]
>
> Note the % sign instead of the @ in the first name. Any idea why this would
> be happening?
>
> Thanks for any help at all.
>
> Joshua Miller
> Web Development::Programming
> Eagle Technologies Group, Inc.
> www.eagletgi.com
> [EMAIL PROTECTED]
> 
~~
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



CFMAIL question

2001-09-14 Thread Joshua Miller

Ok, I have a few addresses in the CC: of a cfmail tag, here's the exact
code:

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



CFMail - Question: Sending to a different mail server

2001-06-20 Thread Larry Juncker

I currently am set up on mail.server1.com
I would like any emails that I send out to appear ss being sent from
mail.server2.com

How do I make my email messaage in the tools, options area to show
mail.server2..com instead of mail.server1.com?

Any quick help on this would be greatly appreciated

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


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



CFMail question

2001-03-19 Thread Jon Tillman

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Does anyone have an idea how to specify the number of cols to use in CFMail?

- -- 
Jon Tillman
http://www.eruditum.org
I tried to categorise my CD collection as well as order by artist, but
that would have needed a six-dimensional sparse matrix. This is a Hard
Problem, so I left it alphabetised.  -- jdh28 (paraphrased)

-BEGIN PGP SIGNATURE-
Version: PGP 6.5.1i

iQA/AwUBOrYLv9ga7tZtnIOtEQI5UACeKlD3T4UlnCNxPOvd18d+GJyn4k4AoPr2
V0t8EpBPExQ1xgse43UF9xim
=4cVL
-END PGP SIGNATURE-

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: CFMail Question

2001-03-14 Thread Jeff Britts

Has anyone done a comparison between using the CFMAIL tag vs. writing the
file directly to the spool directory?



-Original Message-
From: Jon Hall [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, March 14, 2001 3:38 PM
To: CF-Talk
Subject: Re: CFMail Question


Yup, CFMail is The slowest ColdFusion tag.

jon
- Original Message -
From: "Bryan Love" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Wednesday, March 14, 2001 2:32 PM
Subject: RE: CFMail Question


> You will need a VERY powerful cf server and a hefty mail server.  Have you
> ever looked at the CF server's processor during a CFMAIL call?  It hits
100%
> for what seems like a long time.  CFMAIL is very processor intensive and
> should not be used heavily on a production machine.
>
> If you plan on sending more than, say... 300 mails a day you should
> seriously consider getting a dedicated machine solely for using CFMAIL.
>
>
> Bryan Love ACP
> Internet Application Developer
> [EMAIL PROTECTED]
>
>
>
> -Original Message-
> From: Chris Dodson [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, March 14, 2001 11:14 AM
> To: CF-Talk
> Subject: CFMail Question
>
>
> I am creating an online notification board for my Intranet and am
wondering
> what guidelines need to be followed when using cfmail. I could be sending
> up to 1 emails at a time.
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: CFMail Question

2001-03-14 Thread Jon Hall

Yup, CFMail is The slowest ColdFusion tag.

jon
- Original Message -
From: "Bryan Love" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Wednesday, March 14, 2001 2:32 PM
Subject: RE: CFMail Question


> You will need a VERY powerful cf server and a hefty mail server.  Have you
> ever looked at the CF server's processor during a CFMAIL call?  It hits
100%
> for what seems like a long time.  CFMAIL is very processor intensive and
> should not be used heavily on a production machine.
>
> If you plan on sending more than, say... 300 mails a day you should
> seriously consider getting a dedicated machine solely for using CFMAIL.
>
>
> Bryan Love ACP
> Internet Application Developer
> [EMAIL PROTECTED]
>
>
>
> -Original Message-
> From: Chris Dodson [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, March 14, 2001 11:14 AM
> To: CF-Talk
> Subject: CFMail Question
>
>
> I am creating an online notification board for my Intranet and am
wondering
> what guidelines need to be followed when using cfmail. I could be sending
> up to 1 emails at a time.
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: CFMail Question

2001-03-14 Thread Gordon Burns

At 19:56 14/03/01 - W Luke said
>I'll second that.  Sending a mailout in CF to 500 members has caused
>problems on a shared server at my ISP, timeouts and so on.  A dedicated
>machine will be far more reliable - you also might want to consider Howie's
>coolfusion.com products (post SE)

We regularly send out 5-10,000 mails using Howies Post SE.  No
stress, no problems, the post service increases in memory size as
the mail flies out and then falls back down again as it works
through the ones that were undeliverable the first time.   Nothing
more to say really.

Gordon

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: CFMail Question

2001-03-14 Thread W Luke

I'll second that.  Sending a mailout in CF to 500 members has caused
problems on a shared server at my ISP, timeouts and so on.  A dedicated
machine will be far more reliable - you also might want to consider Howie's
coolfusion.com products (post SE)

Will

> You will need a VERY powerful cf server and a hefty mail server.  Have you
> ever looked at the CF server's processor during a CFMAIL call?  It hits
100%
> for what seems like a long time.  CFMAIL is very processor intensive and
> should not be used heavily on a production machine.
>
> If you plan on sending more than, say... 300 mails a day you should
> seriously consider getting a dedicated machine solely for using CFMAIL.
>
>
> Bryan Love ACP
> Internet Application Developer
> [EMAIL PROTECTED]
>
>
>
> -Original Message-
> From: Chris Dodson [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, March 14, 2001 11:14 AM
> To: CF-Talk
> Subject: CFMail Question
>
>
> I am creating an online notification board for my Intranet and am
wondering
> what guidelines need to be followed when using cfmail. I could be sending
> up to 1 emails at a time.
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: CFMail Question

2001-03-14 Thread Bryan Love

You will need a VERY powerful cf server and a hefty mail server.  Have you
ever looked at the CF server's processor during a CFMAIL call?  It hits 100%
for what seems like a long time.  CFMAIL is very processor intensive and
should not be used heavily on a production machine.

If you plan on sending more than, say... 300 mails a day you should
seriously consider getting a dedicated machine solely for using CFMAIL.


Bryan Love ACP
Internet Application Developer
[EMAIL PROTECTED]



-Original Message-
From: Chris Dodson [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, March 14, 2001 11:14 AM
To: CF-Talk
Subject: CFMail Question


I am creating an online notification board for my Intranet and am wondering
what guidelines need to be followed when using cfmail. I could be sending
up to 1 emails at a time.
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



CFMail Question

2001-03-14 Thread Chris Dodson

I am creating an online notification board for my Intranet and am wondering
what guidelines need to be followed when using cfmail. I could be sending
up to 1 emails at a time.


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: CFMAIL question

2001-01-05 Thread Dave Hannum

Thanks Jason,  it works like a charm.

Dave


- Original Message -
From: "Gary McNeel, Jr." <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Friday, January 05, 2001 12:49 PM
Subject: RE: CFMAIL question


Read-up more on CFFILE. It can handle that for you. First it checks for a
file with the same name in the appropriate directory. If it finds one it
automagically renames the uploaded file to something like AC109.exe
(whatever). It returns the new file name to you in a variable that you can
manipulate (like storing it in a database as a pointer, etc.).

-Gary

> -Original Message-
> From: Dave Hannum [mailto:[EMAIL PROTECTED]]
> Sent: Friday, January 05, 2001 10:14 AM
> To: CF-Talk
> Subject: Re: CFMAIL question
>
>
> How do you handle the possibility of duplicate file names?  If you have a
> handler, that would be good enough (or I can write a handler to uniquely
> rename each file)
>
> Thanks,
> Dave
>
>
> =
> "What we need is a list of specific unknown problems we will encounter"
>
> David Hannum
> Web Analyst/Programmer
> Ohio University
> [EMAIL PROTECTED]
> (740) 597-2524
>
>
>
> - Original Message -
> From: "James Taavon" <[EMAIL PROTECTED]>
> To: "CF-Talk" <[EMAIL PROTECTED]>
> Sent: Friday, January 05, 2001 10:59 AM
> Subject: Re: CFMAIL question
>
>
> Dave, I have an app that does something similar, but the file is
> uploaded to the server ina specifoed directory where it can be
> retrieved. Is that good enough?
>
>
> Dave Hannum wrote:
> >
> > Hello,
> >
> > I have an application where the client wants to be able to have
> customers
> > submit information and a document using CFMAIL via a web form.  Does
> someone
> > have an example they can share where they do this.  User fills
> out a form
> > and then attaches a file from their local hard drive and it is submitted
> to
> > owner via CFMAIL.
> >
> > Thanks,
> > Dave
> >
> > =
> > "What we need is a list of specific unknown problems we will encounter"
> >
> > David Hannum
> > Web Analyst/Programmer
> > Ohio University
> > [EMAIL PROTECTED]
> > (740) 597-2524
> >
> >
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: CFMAIL question

2001-01-05 Thread Gary McNeel, Jr.

Read-up more on CFFILE. It can handle that for you. First it checks for a
file with the same name in the appropriate directory. If it finds one it
automagically renames the uploaded file to something like AC109.exe
(whatever). It returns the new file name to you in a variable that you can
manipulate (like storing it in a database as a pointer, etc.).

-Gary

> -Original Message-
> From: Dave Hannum [mailto:[EMAIL PROTECTED]]
> Sent: Friday, January 05, 2001 10:14 AM
> To: CF-Talk
> Subject: Re: CFMAIL question
>
>
> How do you handle the possibility of duplicate file names?  If you have a
> handler, that would be good enough (or I can write a handler to uniquely
> rename each file)
>
> Thanks,
> Dave
>
>
> =
> "What we need is a list of specific unknown problems we will encounter"
>
> David Hannum
> Web Analyst/Programmer
> Ohio University
> [EMAIL PROTECTED]
> (740) 597-2524
>
>
>
> - Original Message -
> From: "James Taavon" <[EMAIL PROTECTED]>
> To: "CF-Talk" <[EMAIL PROTECTED]>
> Sent: Friday, January 05, 2001 10:59 AM
> Subject: Re: CFMAIL question
>
>
> Dave, I have an app that does something similar, but the file is
> uploaded to the server ina specifoed directory where it can be
> retrieved. Is that good enough?
>
>
> Dave Hannum wrote:
> >
> > Hello,
> >
> > I have an application where the client wants to be able to have
> customers
> > submit information and a document using CFMAIL via a web form.  Does
> someone
> > have an example they can share where they do this.  User fills
> out a form
> > and then attaches a file from their local hard drive and it is submitted
> to
> > owner via CFMAIL.
> >
> > Thanks,
> > Dave
> >
> > =
> > "What we need is a list of specific unknown problems we will encounter"
> >
> > David Hannum
> > Web Analyst/Programmer
> > Ohio University
> > [EMAIL PROTECTED]
> > (740) 597-2524
> >
> >
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: CFMAIL question

2001-01-05 Thread James Taavon

CFFILE can handle that issue.

Dave Hannum wrote:
> 
> How do you handle the possibility of duplicate file names?  If you have a
> handler, that would be good enough (or I can write a handler to uniquely
> rename each file)
> 
> Thanks,
> Dave
> 
> =
> "What we need is a list of specific unknown problems we will encounter"
> 
> David Hannum
> Web Analyst/Programmer
> Ohio University
> [EMAIL PROTECTED]
> (740) 597-2524
> 
> - Original Message -
> From: "James Taavon" <[EMAIL PROTECTED]>
> To: "CF-Talk" <[EMAIL PROTECTED]>
> Sent: Friday, January 05, 2001 10:59 AM
> Subject: Re: CFMAIL question
> 
> Dave, I have an app that does something similar, but the file is
> uploaded to the server ina specifoed directory where it can be
> retrieved. Is that good enough?
> 
> Dave Hannum wrote:
> >
> > Hello,
> >
> > I have an application where the client wants to be able to have customers
> > submit information and a document using CFMAIL via a web form.  Does
> someone
> > have an example they can share where they do this.  User fills out a form
> > and then attaches a file from their local hard drive and it is submitted
> to
> > owner via CFMAIL.
> >
> > Thanks,
> > Dave
> >
> > =
> > "What we need is a list of specific unknown problems we will encounter"
> >
> > David Hannum
> > Web Analyst/Programmer
> > Ohio University
> > [EMAIL PROTECTED]
> > (740) 597-2524
> >
> >
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: CFMAIL question

2001-01-05 Thread Dave Hannum

How do you handle the possibility of duplicate file names?  If you have a
handler, that would be good enough (or I can write a handler to uniquely
rename each file)

Thanks,
Dave


=
"What we need is a list of specific unknown problems we will encounter"

David Hannum
Web Analyst/Programmer
Ohio University
[EMAIL PROTECTED]
(740) 597-2524



- Original Message -
From: "James Taavon" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Friday, January 05, 2001 10:59 AM
Subject: Re: CFMAIL question


Dave, I have an app that does something similar, but the file is
uploaded to the server ina specifoed directory where it can be
retrieved. Is that good enough?


Dave Hannum wrote:
>
> Hello,
>
> I have an application where the client wants to be able to have customers
> submit information and a document using CFMAIL via a web form.  Does
someone
> have an example they can share where they do this.  User fills out a form
> and then attaches a file from their local hard drive and it is submitted
to
> owner via CFMAIL.
>
> Thanks,
> Dave
>
> =
> "What we need is a list of specific unknown problems we will encounter"
>
> David Hannum
> Web Analyst/Programmer
> Ohio University
> [EMAIL PROTECTED]
> (740) 597-2524
>
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: CFMAIL question

2001-01-05 Thread James Taavon

Dave, I have an app that does something similar, but the file is
uploaded to the server ina specifoed directory where it can be
retrieved. Is that good enough?


Dave Hannum wrote:
> 
> Hello,
> 
> I have an application where the client wants to be able to have customers
> submit information and a document using CFMAIL via a web form.  Does someone
> have an example they can share where they do this.  User fills out a form
> and then attaches a file from their local hard drive and it is submitted to
> owner via CFMAIL.
> 
> Thanks,
> Dave
> 
> =
> "What we need is a list of specific unknown problems we will encounter"
> 
> David Hannum
> Web Analyst/Programmer
> Ohio University
> [EMAIL PROTECTED]
> (740) 597-2524
> 
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



CFMAIL question

2001-01-05 Thread Dave Hannum

Hello,

I have an application where the client wants to be able to have customers
submit information and a document using CFMAIL via a web form.  Does someone
have an example they can share where they do this.  User fills out a form
and then attaches a file from their local hard drive and it is submitted to
owner via CFMAIL.

Thanks,
Dave


=
"What we need is a list of specific unknown problems we will encounter"

David Hannum
Web Analyst/Programmer
Ohio University
[EMAIL PROTECTED]
(740) 597-2524





~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: CFMAIL question.

2000-10-09 Thread Bill Davidson

Here's more details -
I use netmoves to send faxed orders from on our sites.  I can send them HTML
formatted faxes as long as the body is completely empty, and the HTML is an
attachment.  If I choose HTML as the TYPE in CFMAIL, it is just put in the
body.  No good.  If I use Outlook Express's Rich Text mode (HTML) to send an
email to the fax server it works exactly how I would like it to.

So the process goes:
1) customer builds order
2) We display the order and then they confirm
3) We dynamically generate emails to be sent back to customer, one for
records, and one that goes to the fax server.

I guess I'll just have to bite the bullet and write a file out to the server
and then send it.  Not nearly as elegant as I would like, but I guess it
will do... Unless someone has a better idea!?

If anyone wants to see the system in action, it is www.deliverU.com
It is an operational site, so no test orders please.  All orders are
actually faxed through to the restaurants.

TIA,
Bill
/intraget

- Original Message -
From: Gavin Lilley <[EMAIL PROTECTED]>
To: CF-Talk <[EMAIL PROTECTED]>
Sent: Monday, October 09, 2000 3:45 AM
Subject: RE: CFMAIL question.


> I think that the fact that the html is treated as an attachment or not is
> more down to the mail client. Outlook 97 and similar will display the
> message as blank with an attachment. Newer clients, eg. Outlook 2000 are
> smart enough to display the message as html.
>
> Why would you not want the message displayed anyway?
>
> --
> Gavin Lilley
> Internet / Intranet Developer
> Halesowen College
> Tel: 0121 550 1451 Ext: 330
>
> -Original Message-
> From: John Foulds [mailto:[EMAIL PROTECTED]]
> Sent: 09 October 2000 07:46
> To: CF-Talk
> Subject: Re: CFMAIL question.
>
>
> Sorry, read to fast... "must have an attachment."  Okay, rename the file
> from ".HTM" to something like ".MYFILE" before you CFMAIL it.  The user's
> email client will not recognize the format and it will be attached.
>
> John
>
>
> - Original Message -
> From: "John Foulds" <[EMAIL PROTECTED]>
> To: "CF-Talk" <[EMAIL PROTECTED]>
> Sent: Monday, October 09, 2000 2:39 AM
> Subject: Re: CFMAIL question.
>
>
> > Put the file on the web somewhere, and just put a link to the file in
the
> > email.
> >
> >
> > - Original Message -
> > From: "Warrick, Mark" <[EMAIL PROTECTED]>
> > To: "CF-Talk" <[EMAIL PROTECTED]>
> > Sent: Monday, October 09, 2000 2:36 AM
> > Subject: RE: CFMAIL question.
> >
> >
> > Hmmm... well let's see.  If you don't want to attach a file and you
don't
> > want the HTML-based message embedded into the body of the message, then
> how
> > else could you possibly send something to someone?  I'm confused.
> >
> > --
> > Mark Warrick
> > Phone: (714) 547-5386
> > Efax.com Fax: (801) 730-7289
> > Personal Email: [EMAIL PROTECTED]
> > Personal URL: http://www.warrick.net
> > Business Email: [EMAIL PROTECTED]
> > Business URL: http://www.fusioneers.com
> > ICQ: 346566
> > --
> >
> >
> > > -Original Message-
> > > From: Bill Davidson [mailto:[EMAIL PROTECTED]]
> > > Sent: Sunday, October 08, 2000 2:33 PM
> > > To: CF-Talk
> > > Subject: CFMAIL question.
> > >
> > >
> > > I have an application in which I would need to send an HTML attachment
> > > rather than putting the HTML in the body of the message.
> > >
> > > Anyone have any ideas on a simple solution for this?  The HTML is
> > > dynamically generated, and I would really rather not write a file and
> then
> > > attach it.  Using CFMAIL with type HTML seems to just stick the
> > > HTML in the
> > > body, and doesn't handle this too gracefully.  So maybe writing a file
> is
> > > the only way... (hope not)
> > >
> > > -Bill
> > > /intraget
> > >
> > > --
> > > 
> > > Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> > > To Unsubscribe visit
> > > http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf
> > > _talk or send a message to [EMAIL PROTECTED] with
> > > 'unsubscribe' in the body.
> >
>
> --
> --
> >

RE: CFMAIL question.

2000-10-09 Thread Gavin Lilley

I think that the fact that the html is treated as an attachment or not is
more down to the mail client. Outlook 97 and similar will display the
message as blank with an attachment. Newer clients, eg. Outlook 2000 are
smart enough to display the message as html.

Why would you not want the message displayed anyway?

--
Gavin Lilley
Internet / Intranet Developer
Halesowen College
Tel: 0121 550 1451 Ext: 330

-Original Message-
From: John Foulds [mailto:[EMAIL PROTECTED]]
Sent: 09 October 2000 07:46
To: CF-Talk
Subject: Re: CFMAIL question.


Sorry, read to fast... "must have an attachment."  Okay, rename the file
from ".HTM" to something like ".MYFILE" before you CFMAIL it.  The user's
email client will not recognize the format and it will be attached.

John


- Original Message -
From: "John Foulds" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Monday, October 09, 2000 2:39 AM
Subject: Re: CFMAIL question.


> Put the file on the web somewhere, and just put a link to the file in the
> email.
>
>
> - Original Message -
> From: "Warrick, Mark" <[EMAIL PROTECTED]>
> To: "CF-Talk" <[EMAIL PROTECTED]>
> Sent: Monday, October 09, 2000 2:36 AM
> Subject: RE: CFMAIL question.
>
>
> Hmmm... well let's see.  If you don't want to attach a file and you don't
> want the HTML-based message embedded into the body of the message, then
how
> else could you possibly send something to someone?  I'm confused.
>
> --
> Mark Warrick
> Phone: (714) 547-5386
> Efax.com Fax: (801) 730-7289
> Personal Email: [EMAIL PROTECTED]
> Personal URL: http://www.warrick.net
> Business Email: [EMAIL PROTECTED]
> Business URL: http://www.fusioneers.com
> ICQ: 346566
> ------
>
>
> > -Original Message-
> > From: Bill Davidson [mailto:[EMAIL PROTECTED]]
> > Sent: Sunday, October 08, 2000 2:33 PM
> > To: CF-Talk
> > Subject: CFMAIL question.
> >
> >
> > I have an application in which I would need to send an HTML attachment
> > rather than putting the HTML in the body of the message.
> >
> > Anyone have any ideas on a simple solution for this?  The HTML is
> > dynamically generated, and I would really rather not write a file and
then
> > attach it.  Using CFMAIL with type HTML seems to just stick the
> > HTML in the
> > body, and doesn't handle this too gracefully.  So maybe writing a file
is
> > the only way... (hope not)
> >
> > -Bill
> > /intraget
> >
> > --
> > 
> > Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> > To Unsubscribe visit
> > http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf
> > _talk or send a message to [EMAIL PROTECTED] with
> > 'unsubscribe' in the body.
>
> --
--
> --
> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> To Unsubscribe visit
> http://www.houseoffusion.com/index.cfm?sidebar=sts&body=sts/cf_talk or
send
> a message to [EMAIL PROTECTED] with 'unsubscribe' in the
> body.
>
>
> --

> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.


--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: CFMAIL question.

2000-10-08 Thread John Foulds

Sorry, read to fast... "must have an attachment."  Okay, rename the file
from ".HTM" to something like ".MYFILE" before you CFMAIL it.  The user's
email client will not recognize the format and it will be attached.

John


- Original Message -
From: "John Foulds" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Monday, October 09, 2000 2:39 AM
Subject: Re: CFMAIL question.


> Put the file on the web somewhere, and just put a link to the file in the
> email.
>
>
> - Original Message -
> From: "Warrick, Mark" <[EMAIL PROTECTED]>
> To: "CF-Talk" <[EMAIL PROTECTED]>
> Sent: Monday, October 09, 2000 2:36 AM
> Subject: RE: CFMAIL question.
>
>
> Hmmm... well let's see.  If you don't want to attach a file and you don't
> want the HTML-based message embedded into the body of the message, then
how
> else could you possibly send something to someone?  I'm confused.
>
> --
> Mark Warrick
> Phone: (714) 547-5386
> Efax.com Fax: (801) 730-7289
> Personal Email: [EMAIL PROTECTED]
> Personal URL: http://www.warrick.net
> Business Email: [EMAIL PROTECTED]
> Business URL: http://www.fusioneers.com
> ICQ: 346566
> ------
>
>
> > -Original Message-
> > From: Bill Davidson [mailto:[EMAIL PROTECTED]]
> > Sent: Sunday, October 08, 2000 2:33 PM
> > To: CF-Talk
> > Subject: CFMAIL question.
> >
> >
> > I have an application in which I would need to send an HTML attachment
> > rather than putting the HTML in the body of the message.
> >
> > Anyone have any ideas on a simple solution for this?  The HTML is
> > dynamically generated, and I would really rather not write a file and
then
> > attach it.  Using CFMAIL with type HTML seems to just stick the
> > HTML in the
> > body, and doesn't handle this too gracefully.  So maybe writing a file
is
> > the only way... (hope not)
> >
> > -Bill
> > /intraget
> >
> > --
> > 
> > Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> > To Unsubscribe visit
> > http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf
> > _talk or send a message to [EMAIL PROTECTED] with
> > 'unsubscribe' in the body.
>
> --
--
> --
> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> To Unsubscribe visit
> http://www.houseoffusion.com/index.cfm?sidebar=sts&body=sts/cf_talk or
send
> a message to [EMAIL PROTECTED] with 'unsubscribe' in the
> body.
>
>
> --

> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: CFMAIL question.

2000-10-08 Thread John Foulds

Put the file on the web somewhere, and just put a link to the file in the
email.


- Original Message -
From: "Warrick, Mark" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Monday, October 09, 2000 2:36 AM
Subject: RE: CFMAIL question.


Hmmm... well let's see.  If you don't want to attach a file and you don't
want the HTML-based message embedded into the body of the message, then how
else could you possibly send something to someone?  I'm confused.

--
Mark Warrick
Phone: (714) 547-5386
Efax.com Fax: (801) 730-7289
Personal Email: [EMAIL PROTECTED]
Personal URL: http://www.warrick.net
Business Email: [EMAIL PROTECTED]
Business URL: http://www.fusioneers.com
ICQ: 346566
--


> -Original Message-
> From: Bill Davidson [mailto:[EMAIL PROTECTED]]
> Sent: Sunday, October 08, 2000 2:33 PM
> To: CF-Talk
> Subject: CFMAIL question.
>
>
> I have an application in which I would need to send an HTML attachment
> rather than putting the HTML in the body of the message.
>
> Anyone have any ideas on a simple solution for this?  The HTML is
> dynamically generated, and I would really rather not write a file and then
> attach it.  Using CFMAIL with type HTML seems to just stick the
> HTML in the
> body, and doesn't handle this too gracefully.  So maybe writing a file is
> the only way... (hope not)
>
> -Bill
> /intraget
>
> --
> 
> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> To Unsubscribe visit
> http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf
> _talk or send a message to [EMAIL PROTECTED] with
> 'unsubscribe' in the body.


--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=sts&body=sts/cf_talk or send
a message to [EMAIL PROTECTED] with 'unsubscribe' in the
body.


--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: CFMAIL question.

2000-10-08 Thread Warrick, Mark

Hmmm... well let's see.  If you don't want to attach a file and you don't want the 
HTML-based message embedded into the body of the message, then how else could you 
possibly send something to someone?  I'm confused.

--
Mark Warrick
Phone: (714) 547-5386
Efax.com Fax: (801) 730-7289
Personal Email: [EMAIL PROTECTED]
Personal URL: http://www.warrick.net 
Business Email: [EMAIL PROTECTED]
Business URL: http://www.fusioneers.com
ICQ: 346566
--


> -Original Message-
> From: Bill Davidson [mailto:[EMAIL PROTECTED]]
> Sent: Sunday, October 08, 2000 2:33 PM
> To: CF-Talk
> Subject: CFMAIL question.
> 
> 
> I have an application in which I would need to send an HTML attachment
> rather than putting the HTML in the body of the message.
> 
> Anyone have any ideas on a simple solution for this?  The HTML is
> dynamically generated, and I would really rather not write a file and then
> attach it.  Using CFMAIL with type HTML seems to just stick the 
> HTML in the
> body, and doesn't handle this too gracefully.  So maybe writing a file is
> the only way... (hope not)
> 
> -Bill
> /intraget
> 
> --
> 
> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> To Unsubscribe visit 
> http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf
> _talk or send a message to [EMAIL PROTECTED] with 
> 'unsubscribe' in the body.

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebarRsts&bodyRsts/cf_talk or send a message 
to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: CFMAIL question.

2000-10-08 Thread Scott Knaub

 From what I've seen with CFMAIL, to send an attachment you need to give it a 
filename. So you will probably need to write out a file first.


At 05:32 PM 10/08/2000 -0400, you wrote:
>I have an application in which I would need to send an HTML attachment
>rather than putting the HTML in the body of the message.
>
>Anyone have any ideas on a simple solution for this?  The HTML is
>dynamically generated, and I would really rather not write a file and then
>attach it.  Using CFMAIL with type HTML seems to just stick the HTML in the
>body, and doesn't handle this too gracefully.  So maybe writing a file is
>the only way... (hope not)
>
>-Bill
>/intraget
>
>--
>Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
>To Unsubscribe visit 
>http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
>message to [EMAIL PROTECTED] with 'unsubscribe' in the body.

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



CFMAIL question.

2000-10-08 Thread Bill Davidson

I have an application in which I would need to send an HTML attachment
rather than putting the HTML in the body of the message.

Anyone have any ideas on a simple solution for this?  The HTML is
dynamically generated, and I would really rather not write a file and then
attach it.  Using CFMAIL with type HTML seems to just stick the HTML in the
body, and doesn't handle this too gracefully.  So maybe writing a file is
the only way... (hope not)

-Bill
/intraget

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



CFMAIL QUESTION

2000-08-20 Thread Double Down

This is a multi-part message in MIME format.

--=_NextPart_000__01C00A9C.9D2816C0
Content-Type: text/plain;
charset="Windows-1252"
Content-Transfer-Encoding: 7bit

 I am receive this message when I try to send mail using CFSERVER 4.5.1 
Error Diagnostic Information
unknown exception condition 

TagCFMail::sendMessage

Can anyone tell me how to fix this.



 

TIA
DDINC

--=_NextPart_000__01C00A9C.9D2816C0
Content-Type: text/html;
charset="Windows-1252"
Content-Transfer-Encoding: quoted-printable






 I =
am receive=20
this message when I try to send mail using CFSERVER 4.5.1 
Error Diagnostic Information
unknown exception condition 
TagCFMail::sendMessage
Can anyone tell =
me how to fix=20
this.
 
 
TIA
DDINC

--=_NextPart_000__01C00A9C.9D2816C0--

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



CFMAIL QUESTION

2000-08-17 Thread Double Down

This is a multi-part message in MIME format.

--=_NextPart_000__01C0085D.7E8378E0
Content-Type: text/plain;
charset="Windows-1252"
Content-Transfer-Encoding: 7bit

 I am receive this message when I try to send mail using CFSERVER 4.5.1 
Error Diagnostic Information
unknown exception condition 

TagCFMail::sendMessage

Can anyone tell me how to fix this.



 

TIA
DDINC




--=_NextPart_000__01C0085D.7E8378E0
Content-Type: text/html;
charset="Windows-1252"
Content-Transfer-Encoding: quoted-printable






 I =
am receive=20
this message when I try to send mail using CFSERVER 4.5.1 
Error Diagnostic Information
unknown exception condition 
TagCFMail::sendMessage
Can anyone tell =
me how to fix=20
this.
 
 
TIA
DDINC

 
 

--=_NextPart_000__01C0085D.7E8378E0--

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



CFMAIL QUESTION

2000-08-17 Thread Double Down

This is a multi-part message in MIME format.

--=_NextPart_000__01C00845.6B8640A0
Content-Type: text/plain;
charset="Windows-1252"
Content-Transfer-Encoding: 7bit

I am receive this message when I try to send mail using CFSERVER 4.5.1 
Error Diagnostic Information
unknown exception condition 

TagCFMail::sendMessage

Can anyone tell me how to fix this.





TIA
DDINC


--=_NextPart_000__01C00845.6B8640A0
Content-Type: text/html;
charset="Windows-1252"
Content-Transfer-Encoding: quoted-printable






I am receive =
this message=20
when I try to send mail using CFSERVER 4.5.1 
Error Diagnostic Information
unknown exception condition 
TagCFMail::sendMessage
Can anyone tell =
me how to fix=20
this.
 
 
TIA
DDINC
 

--=_NextPart_000__01C00845.6B8640A0--

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: Quick CFMAIL question

2000-07-12 Thread Chris Ivey

James,
A couple of thoughts on your problem.  One is that if both pages use forms, you could 
pass the email variable as a hidden the entire way through.  Pass it from page 1 to 
page 2 as a URL parameter, then use  
to pass it from page 2 to your action page.  This is a very clean way of passing your 
variables.  Hope this helps! 

Chris Ivey

MTS Systems Engineer
GTE Data Services: Temple Terrace, Florida
TSS Distributed - WAN Tools Group
Office: (813) 978-4844
Pager: (813) 303-1177
ICQ: 25717924


>Date: Tue, 11 Jul 2000 13:30:54 -0700
>From: "James Birchler" <[EMAIL PROTECTED]>
>To: <[EMAIL PROTECTED]>
>Subject: Quick CFMAIL question
>Message-ID: <[EMAIL PROTECTED]>
>
>This is a multi-part message in MIME format.
>
>--=_NextPart_000_0011_01BFEB3C.3D4E73E0
>Content-Type: text/plain;
>   charset="iso-8859-1"
>Content-Transfer-Encoding: 7bit
>
>I'm using a multi-page form to collect user info.  Page one collects an
>email address. This variable is passed to the page 2 template in the URL as
>
>http://www.domain.com/cfpage2.cfm?EMAIL=#email#
>
>In page 2, I collect more data, and upon form submission, email a confirm
>message with :
>
>SUBJECT="Welcome!">
>Text of Email.
>
>
>I get the following error: Any suggestions? I know the variable is being
>passed, as I tested it with a simple  statement. Thanks for the
>help, --James
>
>Bonus Question: Is there a better (or another) way to pass the data from one
>page to the next? 
>
>Error Diagnostic Information
>TO 
>The attribute value is an invalid expression: An error has occurred while
>processing the expression: #email# 
>Error near line 1, column 3. 
>Error resolving parameter EMAIL 
>ColdFusion was unable to determine the value of the parameter. This problem
>is very likely due to the fact that either: 
>   You have misspelled the parameter name, or 
>   You have not specified a QUERY attribute for a CFOUTPUT, CFMAIL, or
>CFTABLE tag.
>The error occurred while processing an element with a general identifier of
>(CFMAIL),
--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Quick CFMAIL question

2000-07-11 Thread Mark Warrick

Looks like the variable "email" is not being passed properly through the 2nd template 
to the 3rd template.

Make sure you've got  tags around that hidden variable.

---mark


--
Mark Warrick
Phone: (714) 547-5386
Efax.com Fax: (801) 730-7289
Personal Email: [EMAIL PROTECTED]
Personal URL: http://www.warrick.net 
Business Email: [EMAIL PROTECTED]
Business URL: http://www.fusioneers.com
ICQ: 346566
--


> -Original Message-
> From: James Birchler [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, July 11, 2000 1:31 PM
> To: [EMAIL PROTECTED]
> Subject: Quick CFMAIL question
> 
> 
> This is a multi-part message in MIME format.
> 
> --=_NextPart_000_0011_01BFEB3C.3D4E73E0
> Content-Type: text/plain;
>   charset="iso-8859-1"
> Content-Transfer-Encoding: 7bit
> 
> I'm using a multi-page form to collect user info.  Page one collects an
> email address. This variable is passed to the page 2 template in 
> the URL as
> 
> http://www.domain.com/cfpage2.cfm?EMAIL=#email#
> 
> In page 2, I collect more data, and upon form submission, email a confirm
> message with :
> 
>  SUBJECT="Welcome!">
> Text of Email.
> 
> 
> I get the following error: Any suggestions? I know the variable is being
> passed, as I tested it with a simple  statement. Thanks for the
> help, --James
> 
> Bonus Question: Is there a better (or another) way to pass the 
> data from one
> page to the next? 
> 
> Error Diagnostic Information
> TO 
> The attribute value is an invalid expression: An error has occurred while
> processing the expression: #email# 
> Error near line 1, column 3. 
> Error resolving parameter EMAIL 
> ColdFusion was unable to determine the value of the parameter. 
> This problem
> is very likely due to the fact that either: 
>   You have misspelled the parameter name, or 
>   You have not specified a QUERY attribute for a CFOUTPUT, CFMAIL, or
> CFTABLE tag.
> The error occurred while processing an element with a general 
> identifier of
> (CFMAIL),
> 
> 
> --=_NextPart_000_0011_01BFEB3C.3D4E73E0
> Content-Type: application/ms-tnef;
>   name="winmail.dat"
> Content-Transfer-Encoding: base64
> Content-Disposition: attachment;
>   filename="winmail.dat"
> 
> eJ8+IjYUAQaQCAAEAAABAAEAAQeQBgAI5AQAAADoAAEIgAcAGE
lQTS5NaWNy
> b3NvZnQgTWFpbC5Ob3RlADEIAQ2ABAACAgACAAEGgAMADgAAANAHBwALAA0AHg
> IAFgEB
> A5AGAIAIAAAlCwACAAELACMAAAMAJgAACwApAAADADYAAA
> AAAB4AcAAB
> FgAAAFF1aWNrIENGTUFJTCBxdWVzdGlvbgIBcQABFgG/63bphC
> 6h++10tkFU
> tUbkERHeZxwAAAIBHQwBFQAAAFNNVFA6SkFNRVNAVEhFUkUuQ09NAAsAAQ
> 4AQAAG
> DgCU98h2678BAgEKDgEYABlyM3OjH9QRuLMAEFofnu/CgAAACwAfDg
> ECAQkQ
> AQAAAD0EAAA5BAAATQYAAExaRnWGDqlzAwAKAHJjcGcxMjUWMgD4C2BuDhAwMzNPAf
> cCpAPjAgBj
> aArAc/BldDAgBxMCgwBQA1RXEMkHbQKAfQqBdgiQd9JrC4BkNAxgYwBQCwOBC7UgSS
> dtIHUAkAEP
> ICBhIG11bHREaS0KsGdlIAIQctEWYHRvIAjhbAWQBUAbFoAEkCALgAIQLiAgflAXcg
> IgF5AYNQQg
> A5Fl4wDAAxFhZGQJcAQQGUDkVGgEACB2CsAHMAJgPxeQG9EKsAQQCYAX8nRo+xeQF2
> MyF/AawAtR
> HhAY8fEdU1VSTBbQELAKsQqEBQqAaAJAcDovL3dZIKAuZANxC4AuBaBtaC9jZhdiMi
> FABFA/gEVN
> QUlMPSMaw9ojH3pJA6AdpCwWMBgn0wRgCXAgZB5gYSRwAHAZHRB1cAIgF6RzdWL6bQ
> QBaQIgJHAa
> xRghGRB2aRfRB4FzF3ID8B1gIMg8Q0YiYj46H3opVRETME89IiK1IiBGSFJPTStAam
> EHgUDDIOgr
> 0FNFUlYtgCtABxrSINktUVVCSkVDIlQrQFdlbCFRZSFEIj4fdFRleAVAb9hmIEUt8y
> pFLyllIyu+
> IBeABUAdYgIQGFBvA/AnFrEEkANgcjoRYG55NSaxZxeAcxcwAiBzPzkkgWtuNAAdUx
> wKYmX/FqIc
> xCXBBCAkkB4QNWAdAX8pECj0FuAAkB4xF5ApUU/oVVRQOkA+JrABkB4R7QnwdBuSAH
> BrBCAXsR1T
> iR1wbHAkcC0tSixizR96QgIgFoAgUQpQNWP9NLBJBCAdYSVRFuA3UAJArRjRKAWxAH
> BvPxIpKPD+
> YTTwGAEcwh1TJYIXoANh/xmzF2MdNRnQMLA1wB96CvTKawngcAuQc2IPQAFA3yiwRX
> IMMBICC/A0
> MQA0crQgRAcwZzYQNWFjFjB/GREX0B5gJzFEOkVbEyFPn0PFG7A/UQJABRBidR5xvx
> wACkEcggOR
> C4BLkWkdEP0woHAbUj6TNNA0VDxAODH4b2NjCHAJcSjwG8AcYf9M8E5gTRIWsR1iTN
> oitUPF30a0
> GdAKwUyQGdExJHAI4fR1bQOgMxlAUYobUQbw+xSQN4NyLGE/wgogMQAiYsdJ4kPFCF
> BsZEYWgSZB
> 80DQBCB1bhxDGAEBAD/B/ybwGdE2VEuyMOEdZFU1G5X/T1EcURZgG9IEkDTwTJBE8N
> psNPBkS8Ed
> NWYA0DNifx5gGrApEQSQNLBEOigwLfwzNgFATJABwUVLDNABwXwgWQhgThFb0BbwBA
> Fw/y+gGGAd
> EVn6Q2AsYSRwBbHfH3RhF0BRJrBh4GMGkAiQ0x0QFuBRVS2AWUrpO9I/FuA6FiRwKW
> RjcylgVEH4
> QkxFF/AXcDFlSN8bof9QIUbDTm9PdxqSW2E7ETkW/xeAGdBVMAMgTKA7EWUyayHlMP
> AoKWQpLF5r
> C8UfgwUUUQBxwAsAAYAIIAYAAMBGAAOFAwADgA
> ggBgAA
> wEYAEIUDAAeACCAGAADARgBShQAAJ2
> oBAB4ACIAI
> IAYAA

Quick CFMAIL question

2000-07-11 Thread James Birchler

This is a multi-part message in MIME format.

--=_NextPart_000_0011_01BFEB3C.3D4E73E0
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: 7bit

I'm using a multi-page form to collect user info.  Page one collects an
email address. This variable is passed to the page 2 template in the URL as

http://www.domain.com/cfpage2.cfm?EMAIL=#email#

In page 2, I collect more data, and upon form submission, email a confirm
message with :


Text of Email.


I get the following error: Any suggestions? I know the variable is being
passed, as I tested it with a simple  statement. Thanks for the
help, --James

Bonus Question: Is there a better (or another) way to pass the data from one
page to the next? 

Error Diagnostic Information
TO 
The attribute value is an invalid expression: An error has occurred while
processing the expression: #email# 
Error near line 1, column 3. 
Error resolving parameter EMAIL 
ColdFusion was unable to determine the value of the parameter. This problem
is very likely due to the fact that either: 
You have misspelled the parameter name, or 
You have not specified a QUERY attribute for a CFOUTPUT, CFMAIL, or
CFTABLE tag.
The error occurred while processing an element with a general identifier of
(CFMAIL),


--=_NextPart_000_0011_01BFEB3C.3D4E73E0
Content-Type: application/ms-tnef;
name="winmail.dat"
Content-Transfer-Encoding: base64
Content-Disposition: attachment;
filename="winmail.dat"

eJ8+IjYUAQaQCAAEAAABAAEAAQeQBgAI5AQAAADoAAEIgAcAGElQTS5NaWNy
b3NvZnQgTWFpbC5Ob3RlADEIAQ2ABAACAgACAAEGgAMADgAAANAHBwALAA0AHgIAFgEB
A5AGAIAIAAAlCwACAAELACMAAAMAJgAACwApAAADADYAAB4AcAAB
FgAAAFF1aWNrIENGTUFJTCBxdWVzdGlvbgIBcQABFgG/63bphC6h++10tkFU
tUbkERHeZxwAAAIBHQwBFQAAAFNNVFA6SkFNRVNAVEhFUkUuQ09NAAsAAQ4AQAAG
DgCU98h2678BAgEKDgEYABlyM3OjH9QRuLMAEFofnu/CgAAACwAfDgECAQkQ
AQAAAD0EAAA5BAAATQYAAExaRnWGDqlzAwAKAHJjcGcxMjUWMgD4C2BuDhAwMzNPAfcCpAPjAgBj
aArAc/BldDAgBxMCgwBQA1RXEMkHbQKAfQqBdgiQd9JrC4BkNAxgYwBQCwOBC7UgSSdtIHUAkAEP
ICBhIG11bHREaS0KsGdlIAIQctEWYHRvIAjhbAWQBUAbFoAEkCALgAIQLiAgflAXcgIgF5AYNQQg
A5Fl4wDAAxFhZGQJcAQQGUDkVGgEACB2CsAHMAJgPxeQG9EKsAQQCYAX8nRo+xeQF2MyF/AawAtR
HhAY8fEdU1VSTBbQELAKsQqEBQqAaAJAcDovL3dZIKAuZANxC4AuBaBtaC9jZhdiMiFABFA/gEVN
QUlMPSMaw9ojH3pJA6AdpCwWMBgn0wRgCXAgZB5gYSRwAHAZHRB1cAIgF6RzdWL6bQQBaQIgJHAa
xRghGRB2aRfRB4FzF3ID8B1gIMg8Q0YiYj46H3opVRETME89IiK1IiBGSFJPTStAamEHgUDDIOgr
0FNFUlYtgCtABxrSINktUVVCSkVDIlQrQFdlbCFRZSFEIj4fdFRleAVAb9hmIEUt8ypFLyllIyu+
IBeABUAdYgIQGFBvA/AnFrEEkANgcjoRYG55NSaxZxeAcxcwAiBzPzkkgWtuNAAdUxwKYmX/FqIc
xCXBBCAkkB4QNWAdAX8pECj0FuAAkB4xF5ApUU/oVVRQOkA+JrABkB4R7QnwdBuSAHBrBCAXsR1T
iR1wbHAkcC0tSixizR96QgIgFoAgUQpQNWP9NLBJBCAdYSVRFuA3UAJArRjRKAWxAHBvPxIpKPD+
YTTwGAEcwh1TJYIXoANh/xmzF2MdNRnQMLA1wB96CvTKawngcAuQc2IPQAFA3yiwRXIMMBICC/A0
MQA0crQgRAcwZzYQNWFjFjB/GREX0B5gJzFEOkVbEyFPn0PFG7A/UQJABRBidR5xvxwACkEcggOR
C4BLkWkdEP0woHAbUj6TNNA0VDxAODH4b2NjCHAJcSjwG8AcYf9M8E5gTRIWsR1iTNoitUPF30a0
GdAKwUyQGdExJHAI4fR1bQOgMxlAUYobUQbw+xSQN4NyLGE/wgogMQAiYsdJ4kPFCFBsZEYWgSZB
80DQBCB1bhxDGAEBAD/B/ybwGdE2VEuyMOEdZFU1G5X/T1EcURZgG9IEkDTwTJBE8NpsNPBkS8Ed
NWYA0DNifx5gGrApEQSQNLBEOigwLfwzNgFATJABwUVLDNABwXwgWQhgThFb0BbwBAFw/y+gGGAd
EVn6Q2AsYSRwBbHfH3RhF0BRJrBh4GMGkAiQ0x0QFuBRVS2AWUrpO9I/FuA6FiRwKWRjcylgVEH4
QkxFF/AXcDFlSN8bof9QIUbDTm9PdxqSW2E7ETkW/xeAGdBVMAMgTKA7EWUyayHlMPAoKWQpLF5r
C8UfgwUUUQBxwAsAAYAIIAYAAMBGAAOFAwADgAggBgAA
wEYAEIUDAAeACCAGAADARgBShQAAJ2oBAB4ACIAI
IAYAAMBGAFSFAAABBDkuMAALAAyACCAGAADARgAA
AAAGhQMADYAIIAYAAMBGAAGFCwAWgAggBgAAwAAA
AEYADoUDABeACCAGAADARgARhQMAGYAIIAYA
AMBGABiFHgAogAggBgAAwEYANoUAAAEB
AB4AKYAIIAYAAMBGADeFAAABAQAeACqACCAG
AADARgA4hQAAAQEACwAygAggBgAAwEYAgoUA
AAECAfgPAQAAABAZcjNzox/UEbizABBaH57vAgH6DwEQGXIzc6Mf1BG4swAQ
Wh+e7wIB+w8BdwA4obsQBeUQGqG7CAArKlbCAABQU1RQUlguRExMAABO
SVRB+b+4AQCqADfZbgAAAEM6XFByb2dyYW0gRmlsZXNcQ29tbW9uIEZpbGVzXFN5c3RlbVxNYXBp
XDEwMzNcTlRcb3V0bG9vay5wc3QAAAMA/g8FAwANNP03AAACAX8AAQAAAC88TkVCQkxJ
TERCSkdDR0pHTUROUEFDRUxNQ0JBQS5qYW1lc0B0aGVyZS5jb20+AAADAAYQXXE49wMABxDdAwAA
AwAQEAADABEQAB4ACBABZQAAAElNVVNJTkdBTVVMVEktUEFHRUZPUk1UT0NPTExF
Q1RVU0VSSU5GT1BBR0VPTkVDT0xMRUNUU0FORU1BSUxBRERSRVNTVEhJU1ZBUklBQkxFSVNQQVNT
RURUT1RIRVBBR0UyVEUA3w0=

--=_NextPart_000_0011_01BFEB3C.3D4E73E0--

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: CFMAIL Question

2000-04-11 Thread Len Conrad


>I have heard horror stories of CFMAIL overloading mail servers.

The pb seems to be more that the CFMAIL SMTP client tends to pile up msgs 
in the CF send mail queue when there is a hiccup and has to be kicked to 
start sending again, or at least that seemed to be a frequently reported pb.

It is possible for an SMTP client to look like a "thundering herd" to one 
SMTP server when delivering tons of mail to a one given server (assuming 
you sort destination address so all msgs for a destination can be delivered 
in one SMTP session, avoiding DNS lookups and session overheads), but if 
your CFMAIL delivery is sprayed over an assortment of SMTP servers, I 
wouldn't worry about that herd pb.  The net tends to govern mail deliver 
speeds more than CFMAIL's sending capacity.

But if your CFMAIL usage is going to dump all mail on a local SMTP server's 
ip address that will relay the mail to the net, then the pb might 
arise.  This is a good approach that offloads delivery from CFMAIL quickly 
and reliably.

2000 mails a day is really peanuts, only 3 per minute per 10 hour day. yawn

Len

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



AW: cfmail question (sorry about no subject before)

2000-04-11 Thread lorenz

If you use cfmail you can go to \cfusion\mail\Log\errors.log. Check it for
"550" Or "User unknown". Between these two texts is the wrong email stored.

Armin

-Ursprüngliche Nachricht-
Von: Roy Rim [mailto:[EMAIL PROTECTED]]
Gesendet am: Dienstag, 11. April 2000 18:48
An: [EMAIL PROTECTED]
Betreff: RE: cfmail question (sorry about no subject before)

>is there any way for cfusion to detect failed email, and automatically
>remove that address from a database?

from what I understand mail servers generally queue mails before sending
them out, so they only error you can possible receive is a connection error
if the mail server is down.  We're facing similar problems here and I do
believe we're going to handle it by mailing any failed mails to a user we
create and parse those emails for errors.

I believe you should do similar thing, parse the emails for bad users and
delete from your database.

Roy.


--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebarRsts&bodyRsts/cf_talk or send a message 
to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: cfmail question (sorry about no subject before)

2000-04-11 Thread Roy Rim

>is there any way for cfusion to detect failed email, and automatically
>remove that address from a database?

from what I understand mail servers generally queue mails before sending
them out, so they only error you can possible receive is a connection error
if the mail server is down.  We're facing similar problems here and I do
believe we're going to handle it by mailing any failed mails to a user we
create and parse those emails for errors.

I believe you should do similar thing, parse the emails for bad users and
delete from your database.

Roy.

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



cfmail question (sorry about no subject before).

2000-04-10 Thread CFM

is there any way for cfusion to detect failed email, and automatically
remove that address from a database? 
--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.