How can I send mail with ColdFusion that will not generate auto-reponsder (vacation) messages?

Use <cfmailparam name="Precedence" value="bulk"> or <cfmailparam name="Precedence" value="list"> after the <cfmail> tag and the email server is 'told' to avoid sending any vacation messages.

<cfmail 
to = "recipient"
subject = "message subject"
from = "sender">
<cfmailparam name="Precedence" value="bulk">
</cfmail>

This question was written by Kamru Miah
It was last updated on July 7, 2008.

Categories

Email

Comments

comments powered by Disqus