Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Coldfusion Schedule Monitor

Status
Not open for further replies.

danarashad

Programmer
Nov 2, 2006
115
US
I've been trying to set up a scheduled task in coldfusion. It doesnt work, what happens is, I go go the admin and manually select run task. It says "task complete", but i dont receive the emails. Also I have it outputting to a text file, and it and it says Connection Failure, could anyone help me with this, thanks in advance!
Go Saints
 
<CFMAIL
TO="danarashad@yahoo.com"
FROM="danarashad@yahoo.com"
SUBJECT="Testing cf schedule"
SERVER="mailserver.com"
TYPE="HTML"
>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
<HEAD>
<TITLE>Reminder
</TITLE>
</HEAD>
<BODY>
Testing Administrator Schedule
<!--- Display merchandise from query --->
<TABLE BORDER="1" cellpadding="0" cellspacing="0">
<TR>
<TH>Item name</TH>
<TH>Description</TH>
<TH>Price</TH>
</TR>
<TR>
<TD>Item Name Test</TD>
<TD>Description Test</TD>
<TD>Price Test</TD>
</TR>
</TABLE>
</BODY>
</HTML>
</CFMAIL>
I took out our email server in the code, i read somewhere that you can't use the scheduled task, behind an SSL site. Is that true. I can nav to the page, and it works, but it does not work from the scheduled task pane in the cf administrator.

thanks
 
something must be wrong with the mail server settings. can you run a cf template to see if you can send yourself an email using the same cfmail tag?

you can run a scheduled task behind an SSL site...

 
but i can nav to the page, and it works?? is i am confused as to what i should look for.
 
No is shouldnt be blocking, because i can nav to the page and it works great!

thanks for the suggestion
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top