在用户注册WordPress后2天发送后续邮件,可以通过以下步骤实现:
function send_followup_email($user_id) {
$user = get_userdata($user_id);
$to = $user->user_email;
$subject = '邮件主题';
$message = '邮件内容';
wp_mail($to, $subject, $message);
}
function schedule_followup_email($user_id) {
if (!wp_next_scheduled('send_followup_email')) {
wp_schedule_single_event(time() + 2 * DAY_IN_SECONDS, 'send_followup_email', array($user_id));
}
}
add_action('user_register', 'schedule_followup_email');
add_action('send_followup_email', 'send_followup_email');
在上述代码中,send_followup_email
函数用于发送邮件,schedule_followup_email
函数用于安排发送邮件的定时任务。user_register
钩子用于在用户注册时触发安排定时任务。
请注意,以上步骤是一种实现方式,具体的实现方法可能因WordPress版本、插件选择等因素而有所不同。
没有搜到相关的沙龙
领取专属 10元无门槛券
手把手带您无忧上云