File: D:/web/circ.itp/trustpilot-review-invitations.asp
<%Option Explicit%>
<!--#include file="dbfunctions.asp"-->
<!--#include file="apputils.asp"-->
<!--#include file="inc-template-other.asp"-->
<!--#include file="inc-template-messages.asp"-->
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<%DisableCache%>
<title>Trustpilot Review Invitations <%=Now%></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link href="styles.css" rel="stylesheet" type="text/css">
</head>
<body>
<div>
<%
' (SS,13/1/20) added following to increase the script timeout from 90 to 600 seconds (10 minutes)
' to fix issue with CIRC where the script was timing out due to volume of emails being sent out just after Christmas
' needed to send 218 (x2) = about 436 emails. Server only managed about 300 before timing out
Server.ScriptTimeout = 10 * 60 ' i.e. 10 minutes (default was 90 seconds)
' (SS,8/12/20) created from review-requests.asp
SendTrustpilotReviewInvitations
' (SS,18/02/10) added Now to show current date/time to help determine that it's not getting a cached page
%>
<br><br><table><tr><td><%=Now%></td></tr></table>
</div>
</body>
</html>
<%Finalise%>