The dialogue below is in response to a question of why cfmail fails when one of the email addresses is invlaid in the to, cc, etc list. Does anyone know how to set the mail.smtp.sendpartial property using cold fusion? Thanks!
--Dialogue
The mail.smtp.sendpartial property would need to be set on your ColdFusion server [1], not on the smtp.sbc.com host. There's probably a programmatic way to do this with cfset, but I'm not the one to ask.
Meanwhile, Sun once again demonstrates [2] that they have difficulty selecting reasonable default behavior.
If set to true, and a message has some valid and some invalid addresses, send the message anyway, reporting the partial failure with a SendFailedException. If set to false (the default), the message is not sent to any of the recipients if there is an invalid recipient address.
--Dialogue
The mail.smtp.sendpartial property would need to be set on your ColdFusion server [1], not on the smtp.sbc.com host. There's probably a programmatic way to do this with cfset, but I'm not the one to ask.
Meanwhile, Sun once again demonstrates [2] that they have difficulty selecting reasonable default behavior.
If set to true, and a message has some valid and some invalid addresses, send the message anyway, reporting the partial failure with a SendFailedException. If set to false (the default), the message is not sent to any of the recipients if there is an invalid recipient address.