Coldfusion cfhttp сообщение из запланированных задач

У меня есть запланированные задачи CF, которые отправляют по электронной почте сводку телефонных звонков для администратора. Я хочу добавить возможность отправлять отчеты по электронной почте для определенных пользователей-администраторов. Дополнительный отчет является динамическим для каждого администратора и хранится в таблице. Я не могу просто сообщить код отчета, так как он может измениться или не существовать для следующего пользователя. Возможно я должен использовать CFHTTP, но я не разбираюсь в этом.

<cfloop query="qGetTelemateEmails">             
  <cfif trim(QGetTime.Call_Email_On_Hour) eq "" or     listfind(#QGetTime.Call_Email_On_Hour#,datepart("h",now()))>
  <cfset TotalTime = 0>
  <cfset NumberOfCalls = 0> 
  <cfmail ........></cfmail>

В следующем коде я также хочу отправить отчет по электронной почте.

<cfquery name="QAdditionalReports" datasource="#request.dtsrc#">
Select *
From Admin_Telemate_Additional_Query_Daily as a  LEFT OUTER JOIN
    Admin_Users AS C ON A.AdminID = C.adminID LEFT OUTER JOIN
    Admin_Telemate_Available_Queries AS b ON A.description = b.description
where a.adminid = #val(QGetTime.call_admin_user_id)#
</cfquery>
<cfif QAdditionalReports.recordcount gt 0>
SEE CODE BELOW  -------------------------------------------------------------       
</cfif>

</cfif>
</cfloop>

Это код отчета, который я хочу "включить / выполнить". Я получаю URL кода из записи таблицы запросов.

    <cfquery name="QGetCommEct" datasource="#request.dsn#">
      select *
      from Q_ES_Communications_by_Search_Number
      where upper(communication_type) = 'T'
        and Date_Entered = '#dateformat(now(),"yyyy/mm/dd")#'
    and consultant_id = <cfqueryparam cfsqltype="cf_sql_integer" value="#url.adminid#">
      order by date_Entered
    </cfquery>
    <cfmail>
        <div style="text-align:center; font-weight:bold; ">Communications Files Query</div> 
    <table>
     <tr>
      <td>
        <table style="font:Arial, Helvetica, sans-serif x-small; border:1px solid black; ">
         <tr>
      <td><strong>Type</strong></td>
      <td><strong>Cons</strong></td>
      <td><strong>Last Name</strong></td>
         </tr>
     <cfoutput query="QGetCommEct">     
    <tr valign="top">
      <td>#QGetCommEct.Communication_Type#-#QGetCommEct.Category#</td>
          <td>#QGetCommEct.AS400_Initials#</td>
          <td>#QGetCommEct.lastname#</td>
        </tr>
     </cfoutput>      
     </table> 
    </td>
  </tr>
</table> 
</cfmail>

Я заменил cfif QAdditionalReports.recordcount GT 0 на

<cfloop query="QAdditionalReports">
<cfhttp url="#QAdditionalReports.QueryURL##QAdditionalReports.QueryName#?adminid=#val(QGetTime.call_admin_user_id)#&emailto=#qGetTelemateEmails.Telemate_Email#">
<cfmail to="vj@gmail.com" from="server@tt.com" subject="Recap of daily phone calls" type="html" spoolenable="false"><cfdump var="#cfhttp#"></cfmail>
</cfloop>

И электронная почта содержит;

struct
Charset [empty string] 
ErrorDetail [empty string] 
Filecontent [empty string] 
Header  HTTP/1.1 503 Server Error Content-Type: text/html Date: Wed, 13 Feb 2013 15:11:17 GMT Server: Microsoft-IIS/7.0 
Mimetype    text/html 
Responseheader  struct
Content-Type    text/html 
Date    Wed, 13 Feb 2013 15:11:17 GMT 
Explanation Server Error 
Http_Version    HTTP/1.1 
Server  Microsoft-IIS/7.0 
Status_Code 503 

Statuscode  503 Server Error 
Text    YES 

Может быть, мне нужно сделать HTTPS

1 ответ

Вы можете поместить код, который вы пытаетесь использовать повторно и "удаленно вызвать", в cfc или включить его в cfinclude.

Написание CFC было бы лучшим способом. Вот немного документации.

<cfcomponent ...>
   <cffunction name = "additionalReports" ...>
      <cfargument name = "adminid" ...>
      <cfargument name = "emailto" ...>

      <!--- dynamic query using your adminid here ---->

      <cfmail to = "#arguments.emailTo#" ...>
         <!--- nicely formated output --->
      </cfmail>
   </cffunction>
<cfcomponent>

Вы бы вызвали CFC в вашей запланированной задаче, как это

<!--- make the object. assume the cfc is in the same folder named adminreports.cfc --->
<cfset reportObject = createObject("component", "adminReports")>
<cfset reportObject.additionalReports(val(QGetTime.call_admin_user_id), qGetTelemateEmails.Telemate_Email)>
Другие вопросы по тегам