Re: CFMAIL Problem with new TLDs

2012-10-01 Thread Dave Watts
On CF9, cfmail seems to be having a problem sending email to some of the newer address, like som...@sprucegrove.ca . This is a valid email address, but CF9 CFMAIL is chocking on this and a other valid addresses that use the newer two character TLDs. If I try to send to that address,

Re: CFMAIL Problem with new TLDs

2012-09-27 Thread Russ Michaels
CF will try to send an email to any address you give it, even a complete nonsense address, it is the SMTP server that will reject it. I have never had any issues sending emails to 2 letter TLD's such as .co or .ca So you should firstly investigate DNS and SMTP issues On Thu, Sep 27, 2012 at 3:10

Re: CFMAIL Problem with new TLDs

2012-09-27 Thread Cameron Childress
The .ca domain belongs to Canada and is 24 years old ( http://en.wikipedia.org/wiki/.ca). I suspect your problem lies elsewhere. -Cameron On Thu, Sep 27, 2012 at 3:10 PM, Robert Harrison rob...@austin-williams.com On CF9, cfmail seems to be having a problem sending email to some of the

Re: CFMail problem since upgrading to CF9

2010-12-10 Thread Ian Skinner
On 12/10/2010 9:04 AM, Rick Root wrote: [Error,scheduler-4,12/10/10,11:40:51,,Could not connect to SMTP host: 69.41.172.242, port: 25, response: 421 and [Error,mailWorker-6,12/10/10,10:50:29,,Could not connect to SMTP host: 69.41.172.242, port: 25, response: 421 Does the user that your

Re: CFMail problem since upgrading to CF9

2010-12-10 Thread Steven Durette
Smtp error 421 is the service is not available and the connection will be closed It is from the smtp server not ColdFusion, so you issue is the smtp server. Steve Sent from my iPhone On Dec 10, 2010, at 12:04 PM, Rick Root rick.r...@gmail.com wrote: We've been having significantly more

Re: CFMail problem since upgrading to CF9

2010-12-10 Thread Rick Root
AH, so Could not connect to SMTP Server reported by coldfusion is not really correct because it DID connect to the SMTP server, it just couldn't send the message. Okay, makes sense. On Fri, Dec 10, 2010 at 12:20 PM, Steven Durette st...@durette.org wrote: Smtp error 421 is the service is not

Re: CFMail problem since upgrading to CF9

2010-12-10 Thread Steven Durette
Actually the CF error is correct. CF tried to connect to the smtp server and all it got back was error 421. So connection couldn't be made. Sent from my iPhone ~| Order the Adobe Coldfusion Anthology now!

Re: CFMail problem since upgrading to CF9

2010-12-10 Thread Rick Root
Found a setting in MDaemon that restricted the maximum concurrent incoming connections. Since CF was set to 30 threads and we have 3 isntances, and MDaemon set to only accept 50 incoming connections, that was PROBABLY causing the issue. Thanks all. Rick

RE: cfmail problem in cfc

2009-05-30 Thread Adrian Lynch
Is your mail server on the same machine as CF? Check it's running. It probably has nothing to do with being in a CFC. Create a simple cfm page to test it. Adrian -Original Message- From: arya krishnan [mailto:arun.b.shou...@gmail.com] Sent: 29 May 2009 19:17 To: cf-talk Subject:

Re: CFMail Problem

2008-05-21 Thread Didgiman
You could try with cfmail spoolenable=no ... That way the message will be sent immediately, without using the spool. Might also help for debugging... Wim. On Wed, May 21, 2008 at 1:46 PM, Meghna Chopra [EMAIL PROTECTED] wrote: I am using CF 8 server on Windows 2003 server. When I use CFMail

Re: CFMail Problem

2008-05-21 Thread Meghna Chopra
Thanks Wim. I will try this for one of the scripts but the problem is that I will have to modify my 100s of scripts. Actually, the problem is not with the scripts. It is ColdFusion server giving this issue but I have no ideas how to fix it. While restarting CF Server is the temp solution but I

Re: CFMail Problem

2008-05-21 Thread Chandan Kumar
Meghana, We found this issue a few days back with 8.0.1. This happens when you spool any email with attachments. You must be getting coldfusion.mail.MailSpooler$InvalidSpoolFileException. As a workaround you can disable spooling as suggested earlier cfmail spoolenable=no . Anyways it

Re: CFMail Problem

2008-05-21 Thread Meghna Chopra
Thanks Chandan. You must be getting coldfusion.mail.MailSpooler$InvalidSpoolFileException. Could you please let me know where I can see this error message? I looked in the CF Admin - Mail Logs and I don't see any such errors Meghana, We found this issue a few days back with 8.0.1. This

Re: CFMail Problem

2008-05-21 Thread Ken Smith
The fix that Chandan describes below will post in the next few days as a technote titled, Patch for CFMail error in ColdFusion 8.01. http://www.adobe.com/go/kb403683 ~| Adobe® ColdFusion® 8 software 8 is the most important and

Re: CFMail Problem

2008-05-21 Thread Chandan Kumar
Depends on your configuration. Did you try server.log? Thanks Chandan. You must be getting coldfusion.mail.MailSpooler$InvalidSpoolFileException. Could you please let me know where I can see this error message? I looked in the CF Admin - Mail Logs and I don't see any such errors

Re: CFMail Problem

2008-05-21 Thread Ken Smith
The fix that Chandan described is posted in a technote titled, Patch for CFMail error in ColdFusion 8.01 - http://www.adobe.com/go/kb403683. Ken Smith ColdFusion Support Adobe ~| Adobe® ColdFusion® 8 software 8 is the most

Re: cfmail problem

2007-02-22 Thread Richard Cooper
I had a similar problem that we solved this week. Emails from forms would bounce from the client but I could send mail to the email address fine though outlook and the same mail server. For us it turned out that the mail server was alive and auth for the domain, deleting this solved the

Re: cfmail problem

2007-02-22 Thread Will Tomlinson
Yep, you've nailed another one. Just ran a test, hardcoded MY email in the TO. Worked just fine. I'll test and see if a friendly email address would be enough difference to make it work. Know if it would off the top of your head dave? Thanks! Will

RE: cfmail problem

2007-02-22 Thread Dave Watts
I'll test and see if a friendly email address would be enough difference to make it work. Know if it would off the top of your head dave? Any email address will work, as long as it's not recognized as a local address by the target mailserver. Dave Watts, CTO, Fig Leaf Software

RE: cfmail problem

2007-02-21 Thread Paul Vernon
Subbed out the real address there. The problem is, I know for a fact that email address is there! Anyone got any ideas? I dunno which way to go on this one. That looks like a mail server issue rather than a CFMAIL issue If I were you the next step would be to telnet into the mail server

Re: cfmail problem

2007-02-21 Thread Jim Wright
Will Tomlinson wrote: My client stopped getting her order was processed email notifications all of a sudden. I ran some tests on the production server and found that as a customer, I receive them just fine. But the one that goes to the client never arrives. So then I'm testing on my

Re: cfmail problem

2007-02-21 Thread Will Tomlinson
Will Tomlinson wrote: Is it possible the the mail server that CF is sending through thinks that it is supposed to handle mail for that domain, but the actual MX for that domain is something completely different? It would try to handle the mail locally, and probably doesn't have that user

RE: cfmail problem

2007-02-21 Thread Dave Watts
!--- Now, notify the shop owner--- cfmail from=#VARIABLES.emailaddress# to=#VARIABLES.emailaddress# server=#VARIABLES.mailserver# subject=An Order Has Been Processed type=html blahblahblah /cfmail They use the same mailserver variable, the same from. I mean, why th'heck would

Re: CFMail Problem - unable to send email form

2006-11-02 Thread Tom King
cfmail to=form.email from=session.auth.email subject=Overs Form type=html server=smtp.mail.anet.com Should be cfmail to=#form.email# from=#session.auth.email#

RE: CFMAIL Problem...

2006-08-11 Thread Russ
I'm not really following, but if you have a mail server that you're sending mail to, and you don't have a whitelist in there for your ip, the mail server will only accept email destined for local addresses (unless it's an open relay, and you don't want that). So if client a, has account on your

RE: CFMAIL Problem...

2006-08-11 Thread Rick Faircloth
I think I finally figure it out...I had my CF Admin setting for the mail server set to my internal IP, instead of my mail subdomain. Once I changed that, everything seems to be flowing nicely. I had it set to my mail subdomain sometime before, but I guess in all the attempts to troubleshoot the

RE: CFMAIL Problem...

2006-08-11 Thread Rick Faircloth
My CF server's internal IP is on the Trusted IP list for the mail server. I'm set to relay, but using SMTP Authentication, so it's not open. Rick -Original Message- From: Russ [mailto:[EMAIL PROTECTED] Sent: Friday, August 11, 2006 11:37 AM To: CF-Talk Subject: RE: CFMAIL Problem

Re: CFMAIL problem? How to debug? SOLVED

2006-06-09 Thread Al Musella, DPM
He checked his spam filters and called his ISP - they are not filtering it. The ISP was wrong.. they were filtering it out into a black hole. We bumped it up to a higher level of support - because this was an important email - and if he wasn't getting this, he might be missing other stuff

RE: CFMAIL problem? How to debug? SOLVED

2006-06-09 Thread Munson, Jacob
Definitely true. While I think the ISPs have good intentions with their aggressive filtering techniques, they often filter legitimate email, and their customers never know it's happening. He checked his spam filters and called his ISP - they are not filtering it. The ISP was wrong.. they

RE: CFMAIL problem? How to debug?

2006-06-08 Thread Munson, Jacob
[Note - I did this because all 500 people from att.net reported they didn't get it. I called att.net and they told me I sent too many at one time..so they just ignore those - without bouncing any error messages. (nice of them:) so now I only sent 1 to any att domain per cycle. ] At my

Re: CFMail Problem

2004-10-28 Thread Ryan Emerle
Yeah, that most definitely sounds like a relaying issue. Have your client add your server address(es) to their relay-allow list(s). Most (though it should be all) mail servers will not allow a foreign IP to send email to domains that the server does not host. -Ryan On Thu, 28 Oct 2004

Re: cfmail problem

2004-07-07 Thread Jordan Michaels
Curious, did you enable mail spooling? -- Warm regards, Jordan Michaels Vivio Technologies http://www.viviotech.net/ [EMAIL PROTECTED] Tim Do wrote: Hello all, I'm looping through a list of bout 50 email addresses and doing a cfmail inside each iteration.It sends out successfully on most

RE: cfmail problem

2004-07-07 Thread Tim Do
Yes. -Original Message- From: Jordan Michaels [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 07, 2004 2:50 PM To: CF-Talk Subject: Re: cfmail problem Curious, did you enable mail spooling? -- Warm regards, Jordan Michaels Vivio Technologies http://www.viviotech.net/ [EMAIL PROTECTED

RE: cfmail problem

2004-07-07 Thread Ryan Duckworth
: Wednesday, July 07, 2004 4:55 PM To: CF-Talk Subject: RE: cfmail problem Yes. -Original Message- From: Jordan Michaels [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 07, 2004 2:50 PM To: CF-Talk Subject: Re: cfmail problem Curious, did you enable mail spooling? -- Warm

RE: cfmail problem

2004-07-07 Thread Tim Do
Thx!I'll try that next time.. don't want to spam them again =P -Original Message- From: Ryan Duckworth [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 07, 2004 3:05 PM To: CF-Talk Subject: RE: cfmail problem Another solution is to simply delay between each email to avoid a connection

Re: cfmail problem

2004-07-07 Thread Jordan Michaels
10983 Granada Lane Overland Park, KS 66207 (913) 754-4272 -Original Message- From: Tim Do [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 07, 2004 4:55 PM To: CF-Talk Subject: RE: cfmail problem Yes. -Original Message- From: Jordan Michaels [mailto:[EMAIL PROTECTED

RE: cfmail problem

2004-06-15 Thread Pascal Peters
Archive: http://www.houseoffusion.com/lists.cfm/link=i:4:166614---The from has to be a valid email address. So I would check that (download IsEmail from cflib.org): cfset siteEmail = [EMAIL PROTECTED] cfif NOT(Len(form.email) AND IsEmail(form.email)) cfset form.email = variables.siteEmail /cfif

RE: cfmail problem

2004-06-14 Thread Joe Rinehart
Hi Stevo, #iif(not len(trim(email)),DE('my company email'),email)# should get you where you need to go. However, you may want to solve this problem at the database level (or whatever layer is one up from where you currently are) so that you don't have to continually implement this if you

Re: cfmail problem

2004-06-14 Thread Stevo Vee
Well thank you Joe.But just one question do I try it with a seperate statement or place it in the from. Hi Stevo, #iif(not len(trim(email)),DE('my company email'),email)# should get you where you need to go. However, you may want to solve this problem at the database level (or whatever layer

Re: cfmail problem

2004-06-14 Thread Stevo Vee
Well thanks you Joe.But just one question do I try it with a seperate statement or place it in the from. Hi Stevo, #iif(not len(trim(email)),DE('my company email'),email)# should get you where you need to go. However, you may want to solve this problem at the database level (or whatever layer

Re: CFMail problem

2004-03-02 Thread Rick Lansford
Pretty general question, but one thing might be the number of emails you are trying to send. You might be getting timed out if you are sending a large number. http://www.houseoffusion.com/banners/view.cfm?bannerid=11 CFMail is acting up on me.The same exact tag works only sporadically.I know this

RE: CFMail Problem (Valid Email Addresses in TO and FROM fields )

2003-12-05 Thread Ming Lu
Message- From: Tom Jordahl [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 03, 2003 4:42 PM To: CF-Talk Subject: RE: CFMail Problem (Valid Email Addresses in TO and FROM fields ) This sounds like a problem with the way your mail server (SMTP server) is set up. ColdFusion does not have

RE: CFMail Problem (Valid Email Addresses in TO and FROM fields )

2003-12-03 Thread Tom Jordahl
This sounds like a problem with the way your mail server (SMTP server) is set up. ColdFusion does not have restrictions of this kind. -- Tom Jordahl Macromedia Server Development -Original Message- From: Ming Lu [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 03, 2003 4:23 PM To:

Re: CFMail Problem (Valid Email Addresses in TO and FROM fields)

2003-12-03 Thread Ubqtous
Ming, On 12/3/2003 at 16:22, you wrote: ML Is this a CF problem or SMTP server setting problem? This is a SMTP issue. Cold Fusion does nothing but write out the email and pass it to the mail server. If CF cannot connect to the mail server for whatever reason, then it will dump the message into

Re: CFMail Problem (Valid Email Addresses in TO and FROM fields)

2003-12-03 Thread Scott Weikert
Ubqtous writes: As I recall, in CF4.5- the email addresses in the TO and FROM attributes of CFMAIL had to be well-formed, but I think this requirement was relaxed in CF5 or MX. I've found the opposite. Badly formed email addresses in the TO in CFMX error out. CF5 used to try sending them

Re: CFMail Problem (Valid Email Addresses in TO and FROM fields)

2003-12-03 Thread Jochem van Dieten
Ming Lu wrote: In CFMail tag (ColdFusion 5 server), at least one of the email addresses in TO or FROM fields has to be a valid email address on the same server where the email to be sent, otherwise the email will be ended up in UnDelivr folder and can never be able to sent out when none of

Re: CFMail Problem (Valid Email Addresses in TO and FROM fields)

2003-12-03 Thread Ubqtous
Scott, On 12/3/2003 at 17:49, you wrote: SW I've found the opposite. Badly formed email addresses in the TO in SW CFMX error out. CF5 used to try sending them regardless. I'm pretty sure CF4.5 (or maybe it was 4.0) didn't like malformed addresses. CF5 is when I noticed that it didn't matter

Re: CFMail Problem (Valid Email Addresses in TO and FROM fields)

2003-12-03 Thread Scott Weikert
Ubqtous writes: cfmail to=ubqtous from=[EMAIL PROTECTED] subject=testTEST/cfmail cfmail to=[EMAIL PROTECTED] from=ubqtous subject=testTEST/cfmail cfmail to=ubqtous from=ubqtous subject=testTEST/cfmail Try running ubqtous@@ubqtous.com through and see. That was what my issue was yesterday -

Re: CFMail Problem (Valid Email Addresses in TO and FROM fields)

2003-12-03 Thread Ubqtous
Scott, On Wednesday, December 3, 2003, 7:07:54 PM, you wrote: SW Try running ubqtous@@ubqtous.com through and see. That was what my issue SW was yesterday - emails with two @'s in'em (sometimes together, sometimes SW not). Ah-ha, MX does error out with @@ in the TO field: cfmail

RE: CFMail Problem

2003-07-04 Thread Mark Leder
Try this: cfmail TO=#ceu_needed.email# FROM=[EMAIL PROTECTED] SUBJECT=CEU Notice SERVER=mail.domain.org TYPE=html QUERY=users GROUP=#ceu_needed.email# GROUPCASESENSITIVE=no Thanks, Mark -Original Message- From: Jillian Carroll

RE: CFMail Problem

2003-07-04 Thread Dan Phillips
Or if SERVER=mail.domain.org does not work, use SERVER=localhost or SERVER=127.0.0.1 Dan Phillips www.CFXHosting.com 1-866-239-4678 [EMAIL PROTECTED] -Original Message- From: Mark Leder [mailto:[EMAIL PROTECTED] Sent: Friday, July 04, 2003 10:38 AM To: CF-Talk Subject: RE: CFMail

Re: CFMAIL problem with server!

2002-06-23 Thread Jochem van Dieten
Cameron Childress wrote: It will use the mail server which was specified when the message was created. You can find the mail server for each message by opening the cfmail file and looking at the CF headers at the very top of the file. You can change this in a text editor, but be careful how

RE: CFMAIL problem with server!

2002-06-23 Thread Joe Bastian
You have to EDIT/UPDATE all the emails in the undeliverable directory to the right MAIL SERVER details and once you move them to email SPOOL directory, CF will try to resend them. All emails will be send successfully.. if you have the right parameters. Joe -Original Message- From: Neil

RE: CFMAIL problem with server!

2002-06-22 Thread Cameron Childress
It will use the mail server which was specified when the message was created. You can find the mail server for each message by opening the cfmail file and looking at the CF headers at the very top of the file. You can change this in a text editor, but be careful how you do it, CF-Studio will

Re: CFMAIL problem - not sending, stuck in spool

2002-01-10 Thread Don Vawter
Get the resendmail tag from the tag gallery - Original Message - From: Melissa Fraher [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, January 10, 2002 10:20 AM Subject: CFMAIL problem - not sending, stuck in spool I have a problem with Cold Fusion sending out email and

Re: CFMAIL problem - not sending, stuck in spool

2002-01-10 Thread Melissa Fraher
Don - Thank you for the response. Actually , it won't send any mail right now because one piece of mail is in the spool and I can't delete it. So even when I manually drag undeliverables into the spool, they won't go out. Any ideas out there? Thanks. Melissa Don Vawter wrote: Get the

Re: CFMAIL problem - not sending, stuck in spool

2002-01-10 Thread Billy Cravens
Wouldn't this tag only handle mail that is in the UNDELIVERABLE folder? If so, this has nothing to do with Melissa's problem. - Original Message - From: Don Vawter [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, January 10, 2002 11:13 AM Subject: Re: CFMAIL problem

Re: CFmail problem

2001-09-26 Thread W Luke
I've found it's more reliable to state your server and port (25) in CFmail. Also, have you checked your logs? Will -- http://www.localbounty.com - free local and national advertising - Original Message - From: Ins [EMAIL PROTECTED] Newsgroups: cf-talk Sent: Wednesday, September 26, 2001

Re: CFMail Problem 4.5 on NT 4 SP6

2001-08-13 Thread Howie Hamlin
Is there anything in the CFMAIL log file? I would look there first. 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

Re: CFMail Problem 4.5 on NT 4 SP6

2001-08-13 Thread Dave Hannum
Nothing in the log file. OK - we just updated ot CF5. Same problem . . . Dave - Original Message - From: Howie Hamlin [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Monday, August 13, 2001 3:06 PM Subject: Re: CFMail Problem 4.5 on NT 4 SP6 Is there anything in the CFMAIL

Re: CFMail Problem 4.5 on NT 4 SP6

2001-08-13 Thread Howie Hamlin
There's no mail.log file in cfusion\log or is the file empty? Regards, Howie - Original Message - From: Dave Hannum [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Monday, August 13, 2001 4:12 PM Subject: Re: CFMail Problem 4.5 on NT 4 SP6 Nothing in the log file. OK - we

Re: CFMAIL problem

2001-06-20 Thread Howie Hamlin
Message - From: Bill Poff [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Monday, June 18, 2001 10:15 AM Subject: RE: CFMAIL problem -Original Message- From: Hamid Hossain [mailto:[EMAIL PROTECTED]] Sent: Sunday, June 17, 2001 2:39 AM To: CF-Talk Subject: CFMAIL problem

RE: CFMAIL problem

2001-06-19 Thread Bill Poff
Hi, Sorry for the earlier message, my fingers were going faster than my brain... My experience with mail servers is that they won't send mail without a valid From address. This is how I take care of that. !--- Check User's Email Address --- CF_IsEmail

RE: CFMAIL problem

2001-06-19 Thread Dylan Bromby
that's a mail server-dependent feature. not all mail servers automatically validate the sender. -Original Message- From: Bill Poff [mailto:[EMAIL PROTECTED]] Sent: Monday, June 18, 2001 7:24 AM To: CF-Talk Subject: RE: CFMAIL problem Hi, Sorry for the earlier message, my fingers were

RE: CFMAIL problem

2001-06-19 Thread Dan Phillips
have SMTP or mail server issues. Dan Phillips www.cfxhosting.com -Original Message- From: Bill Poff [mailto:[EMAIL PROTECTED]] Sent: Monday, June 18, 2001 10:16 AM To: CF-Talk Subject: RE: CFMAIL problem -Original Message- From: Hamid Hossain [mailto:[EMAIL PROTECTED]] Sent

Re: CFMAIL problem

2001-06-19 Thread Howie Hamlin
Check the log files for errors and see if there are any mails in the UNDELIVR folder. These are under: [directory where cf is installed]\mail\log [directory where cf is installed]\mail\undelivr The log file will contain errors in transmission to the mail server and the UNDELIVR folder will

RE: CFMAIL problem

2001-06-19 Thread Philip Arnold - ASP
I am tring to send email with cfmail but I am facing some problems. Some times it sends and some time it does not send! I am sure that all form variables are passed and they are ok. I used the following standard code: cfif IsDefined(SendIt) cfmail from=#FORM.sEmail#

RE: CFMAIL problem

2001-06-18 Thread Bill Poff
-Original Message- From: Hamid Hossain [mailto:[EMAIL PROTECTED]] Sent: Sunday, June 17, 2001 2:39 AM To: CF-Talk Subject: CFMAIL problem Hi All, I am tring to send email with cfmail but I am facing some problems. Some times it sends and some time it does not send! I am sure that

Re: CFMAIL problem

2001-06-18 Thread Bill Davidson
Have you looked in the CF spool to see if the mail is being generated? There's two folders to check, the spooled mail, and the undeliverable mail. That way you can at least see where the mail is failing. -Bill brainbox - Original Message - From: Hamid Hossain [EMAIL PROTECTED] To:

RE: CFMAIL Problem

2001-03-21 Thread Craig . Wilson
You may find it's because you have a space in your 'from' field. -Original Message- From: Chris Bellacose [mailto:[EMAIL PROTECTED]] Sent: 21 March 2001 14:40 To: CF-Talk Subject: CFMAIL Problem !DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" Hello All: I get the

RE: CFMAIL Problem

2001-03-21 Thread Javed Mushtaq
you must have no spaces in the from and it is expecting a [EMAIL PROTECTED] format,. -Original Message- From: Chris Bellacose [mailto:[EMAIL PROTECTED]] Sent: 21 March 2001 14:40 To: CF-Talk Subject: CFMAIL Problem !DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" Hello

RE: CFMAIL Problem

2001-03-21 Thread Craig . Wilson
You can most things in the from field, SMTP does not like spaces though. from="Chris_Test" would work. -Original Message- From: Javed Mushtaq [mailto:[EMAIL PROTECTED]] Sent: 21 March 2001 14:55 To: CF-Talk Subject: RE: CFMAIL Problem you must have no spaces i

Re: CFMAIL Problem

2001-03-21 Thread Chris Bellacose
thanks, it was a permissions problem. http://www.allaire.com/Handlers/index.cfm?ID=15821Method=Full - Original Message - From: [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Wednesday, March 21, 2001 9:55 AM Subject: RE: CFMAIL Problem You may find it's becaus

RE: CFMAIL Problem

2001-03-21 Thread Jason E Miller
There is a fix for this on allaire that you can download - just search for TagCFMail::sendMessage Jason E Miller Computer Consultants Unlimited http://www.computercu.com Brainbench Certified Cold Fusion Developer 4.5 Transcript Link: http://www.brainbench.com/transcript.jsp?pid=477741

RE: CFMAIL Problem

2001-01-11 Thread Jann VanOver
First clue, you don't need to use CFOUTPUT inside a CFMAIL. Fields from the query named in the cfmail tag don't need to be qualified with their query name, but fields from the other query DO. In the example below, stuff from the query named "details" must have the "details." before the field

Re: CFMAIL problem

2000-07-26 Thread Michael Smith
--6A8DF45E9A5D90D670826DEE Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit could be a bad character in the email - I once had our email server die with some bad characters in the email. Do this happen on all email or just one? if one check the text you

RE: CFMAIL problem

2000-05-10 Thread Grady Milhon
I would try increasing your mail server timeout under the admin settings for mail. It might be timing out trying to send the larger message. Just an idea. Grady [EMAIL PROTECTED] -Original Message- From: [EMAIL PROTECTED] at internet Sent: Wednesday, May 10, 2000 6:52 AM To: