2

我有一个电子邮件发送到的电子邮件地址列表。邮件函数循环遍历数据库中的列表,但如果遇到格式错误的电子邮件地址,它会停止并跳出循环。我尝试使用 try/catch 来捕获错误,并希望它能够继续循环,但它并没有像我希望的那样工作。代码如下。如果有人有任何想法,或者我可以在循环之前筛选电子邮件地址以过滤掉坏人的正则表达式,那就太棒了。

谢谢。

    <!---Try to send the mail(s)--->
<cftry>
    <cfmail to="<#Auctioneer.email#>" from="#emailSite#" subject="#Email.subject#" server="#emailServer#" query="Auctioneer" type="html">
        <!---Some email content--->
    </cfmail>

    <cfcatch type="Application">
        <cflog text="#cfcatch.detail#" file="mail" type="Error" application="yes">
        <cfmail to="admin@website.co.uk" from="#emailSite#" subject="Invalid E-Mail Address" type="html">
            Email address not valid error.
            #Auctioneer.email#
            <cfdump var="#cfcatch.detail#">
        </cfmail>
    </cfcatch>
</cftry>
4

3 回答 3

2

您可以先尝试验证查询中的电子邮件地址。

不过,对我来说,我从不喜欢让 CFMAIL 标签管理查询。它似乎总是造成比它的价值更多的麻烦。我通常会这样做:

<cfoutput query="Auctioneer">
  <cftry>
    <cfmail to="#email#" from="#variables.emailSite#" subject="#variables.subject#" server="#application.emailServer#" type="html">
      <!---Some email content--->
    </cfmail>

    <cfcatch type="Application">
        <cflog text="#cfcatch.detail#" file="mail" type="Error" application="yes">
        <cfmail to="admin@website.co.uk" from="#variables.emailSite#" subject="Invalid E-Mail Address" type="html">
            Email address not valid error.
            #email#
            <cfdump var="#cfcatch.detail#">
        </cfmail>
    </cfcatch>
  </cftry>
</cfoutput>
于 2011-11-26T19:46:09.713 回答
2

您想要的是遍历地址,验证它们并仅为有效条目发送邮件。像这样的东西

<cfloop query="getEmails">
    <cfif isValid("email", Auctioneer.email)
    ...send valid email...
    <cfelse>
    ...send invalid email, or better log in database...
    </cfif>
</cfloop>

PS 无需<>输入to

于 2011-11-26T19:49:57.353 回答
0

我会亲自遍历它们,捕获错误并继续循环。

for(var i = 1; i < Auctioneer.recordCount; i++) {
    try {
        //send email
    } catch (Any e) {
        //log
        continue;
    }
}
于 2011-11-28T11:26:59.363 回答