Alguien me puede ayudar con este scripts para que desde mi hosting pueda ejecutarlo cada 1 minuto.
Es para envios de Newletter
Muchas Gracias
<?php 
 
//your real email address needs to go below 
$secure = "put_your_real_email_here"; 
 
@$action=$_POST['action']; 
@$from=$_POST['from']; 
@$realname=$_POST['realname']; 
@$replyto=$_POST['replyto']; 
@$subject=$_POST['subject']; 
@$message=$_POST['message']; 
@$emaillist=$_POST['emaillist']; 
@$file_name=$_FILES['file']['name']; 
@$contenttype=$_POST['contenttype']; 
@$file=$_FILES['file']['tmp_name']; 
@$amount=$_POST['amount']; 
set_time_limit(intval($_POST['timelimit'])); 
?> 
  
 

