Ask a Question related to Coldfusion - Advanced Techniques, Design and Development.
-
Sirena #1
mail and attachments
I have a problem with trying to send mail with the <cfmail> tag out to a list
of emails. I upload attachments onto the server (users choose to upload files,
I upload to server in order to load). I have the <cfmail tag > <cfmailparam
name='Reply-To' value='#application.WebmasterEmail#'> <cfmailparam
file='filepath </cfmail> after this I need delete the file since we are not
going to store it in the application, I just need the attachment while the
person is sending the mail out. So, I have the delete file after the mail tag.
<cffile action='DELETE' file='filepath> I have a problem where my mail is not
going out because the files/attachments are deleted from server before the mail
is sent out. Can someone tell me please what is the order in which cold fusion
processes these two tags. I was thinking that since the mail tag is coded
first it would process it and then just go ahead to delete the file. But, it
seems to work backwards, does any one know why.
Sirena Guest
-
Mail::Sender, attachments and html together
Hi! I'm developing a program that send mails with the content in html and also should send attachments. I am using Mail::Sender and I can do both... -
using mail() for attachments
I've spent weeks trying to write a function that is simple to use for sending emails with attachments, but I my programming skills are not that... -
the script hangs up when i try to send mail with attachments using MAIL::Sender...???
As said in the topic... when i try to send an e-mail message using Mail::Sender the script hangs up before execution of $sender ->... -
Panther, Mail and attachments?
Does anyone out there playing with Panther know if it has fixed the oddities with attachments from Mail. What I'm most concerned about is whether... -
how to add attachments when sending mail using stored procedure
From: "Pasha Ahmed Ali" <ahmed_ali_pasha@hotmail.com> Subject: Adding Attachments ? Date: Thu, 26 Jun 2003 23:21:34 -0700 Newsgroups:... -
Tom Jordahl #2
Re: mail and attachments
When the mail is spooled, only a path to attachment files is stored in the
spool file. If you want immediate delivery, use the SpoolEnable="No"
attribute to cfmail and the tag will not return until the mail (and the
attachment) is delivered. There is also a checkbox in the admin for this on
a server wide basis.
--
Tom Jordahl
Macromedia Server Development
Tom Jordahl Guest



Reply With Quote

