I need to ship e-mail every day 12:54pm utilizing wp_mail
operate, but it surely ship mail constantly.
Plz counsel what’s unsuitable?
<?php $timeg = date( 'g:ia', current_time( 'timestamp', 0 ));
$timem = '12:54pm';
if ($timem == $timeg)
{
$to = 'abc@gmail.com';
$topic = 'Put up Printed by Creator';
$headers = 'From: admin <admin@urdutahzeeb.com>' . "rn";
$message = 'your';
wp_mail($to, $topic, $message, $headers);
}
?>