What is CF_advancedemail? A custom tag?

-----Original Message-----
From: Ewok [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, August 27, 2002 12:38 PM
To: CF-Talk
Subject: Re: cfmail...


may be an easier more efficient way but .......

use CF_advancedemail and wrap it in a CFTRY

make the <CFCATCH> script the same as your original mail script exept
specify a different server

???



<cftry>

<cf_advancedemail
                from="Recipient@HisHousecom"
                        to="[EMAIL PROTECTED]"
                server="FIRSTSERVER"
                spooldir="C:\cfusion\mail\spool\">


<cf_advancedemailparam contenttype="Text" Subject="Subject Here">

#messagecontent#

</cf_advancedemailparam>

</cf_advancedemail>



<cfcatch type="ANY">

<cf_advancedemail
                from="Recipient@HisHousecom"
                to="[EMAIL PROTECTED]"
                server="NEXTSERVER"
                spooldir="C:\cfusion\mail\spool\">

<cf_advancedemailparam contenttype="Text" Subject="Subject Here">

#messagecontent#

</cf_advancedemailparam>

</cf_advancedemail>


</cfcatch>

</cftry>















----- Original Message -----
From: "Buddy" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Tuesday, August 27, 2002 2:36 PM
Subject: cfmail...


> Hey kids,
> I am writing an emailer app that distributes the emails between 3 mail
> servers more or less randomly.
> I'm getting a surprising number of errors (can't connect to server). Is
> there a way that I can get the
> app to try another mail server if the server it is trying doesn't respond?
> Thank in advance for your help.
> Buddy
>
>

______________________________________________________________________
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

Reply via email to