我打算在指定时间向用户发送电子邮件。 我使用wp_schedule_single_event通过以下代码向用户发送电子邮件:
function send_email() {
$to = "ex@example.com";
$subject = "test function wp_mail";
$message = "this is a body text massage....";
wp_mail($to, $subject, $message);
}
add_action( 'event','send_email' );
wp_schedule_single_event( time() + 180, 'event' );
但是此电子邮件代码每三分钟发送一次,我不想这样 我只想发送一封电子邮件。
请帮助我!
答案 0 :(得分:0)
您需要在函数或响应中添加代码,否则它将 在每次现场访问时安排此事件:
df = pd.read_csv('path/to/Input.csv')
data.loc[ data.Units == 'in' ] = x
data[measurement][x] = ((data[measurement][x])/25.4) # convert to mm.