We ran into this a few months ago when we upgraded to 4.5.1.  Apparently
they changed the handling of attachments in 4.5.1.  You used to do
something like this:
<cfmail from="[EMAIL PROTECTED]" to="[EMAIL PROTECTED]"
subject="Dave Watts is King" attachment="c:\mydocs\mypicture.jpg">
        More interesting stuff
</cfmail>

Now, the good news is you can make multiple attachments.  The bad news is
you need to change the old code.

<cfmail from="[EMAIL PROTECTED]" to="[EMAIL PROTECTED]"
subject="Dave Watts is King">
        <cfmailparam file="c:\mydocs\mypicture.jpg">
        <cfmailparam file="c:\mydocs\myotherpicture.jpg">
        More interesting stuff
</cfmail>

Some other things to check:

1. Has the access privileges changed on the directories?
2. Is there enough disk space?

HTH!

Sharon

At 11:06 AM 6/29/2000 -0400, Paul Ihrig wrote:
>just found this in my local mail log
>
>"Warning","TID=-1754369","06/29/00","09:30:34","Unable to move the spooled
>mail file, C:\CFUSION\MAIL\spool\E0C3.cfmail. Access is denied.."
>
>what now?
>---------------------------------------------------------------------------
---
>Archives: http://www.eGroups.com/list/cf-talk
>To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=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?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.

Reply via email to