In ColdFusion there are two emails in one program. The first is a receipt to the buyer, and the second is a notification to the seller.
<cfmail
from = "#session.user#"
to = "#persemail#"
password = "#session.password#"
username = "#session.user#"
server = "localhost"
replyto = "#session.replyto#"
subject = "your receipt "
type = "html" >
<cfoutput>#cart2#</cfoutput>
</cfmail>
<cfmail
from = "#session.user#"
to = "#getlogo.MoxcoEmail1#"
password = "#session.password#"
username = "#session.user#"
server = "localhost"
replyto = "#session.replyto#"
subject = "you have an order"
type = "html" >
<p> You have just received the following order </p>
<cfoutput>#cart2#</cfoutput>
</cfmail>
Because I was testing the program, it turns out that the "to" in the first email, "#persemail#", is the same as the "to" in the second email, #getlogo.MoxcoEmail1#. ColdFusion doesn't like this and returns an error that the "to" field must be present (in the 2nd email). It works fine if the "to" field is different in the two emails, and that should usually be the case, but we can't count on it.
Does anyone know why cfmail gets tangled in its skirts this way when the "to" is the same, and more important, is there a way to fix it?