我已经尝试过搜索上面的内容并找到了类似的结果,但不能解决我的问题。我有一个WP主题,其中包括在用户之间发送私人消息的功能,接收者收到收到私人消息的电子邮件通知。 问题是邮件被发送两次,电子邮件也是如此。我也可以在收件箱和发件箱中看到两次消息。
这是代码,不知道是什么导致了这个问题:
<?php }
elseif($third_page == 'send') { ?>
<?php
$pid = $_GET['pid'];
$uid = $_GET['uid'];
$user = get_userdata($uid);
if(!empty($pid))
{
$post = get_post($pid);
$subject = "RE: ".$post->post_title;
}
if(isset($_POST['send']))
{
$subject = strip_tags(trim($_POST['subject']));
$message = strip_tags(trim($_POST['message']));
$to = $_POST['to'];
if(!empty($to))
{
$uid = auctionTheme_get_userid_from_username($to);
}
if($uid != false && $current_user->ID != $uid):
global $current_user;
get_currentuserinfo();
$myuid = $current_user->ID;
global $wpdb; $tm = current_time('timestamp',0);
$s = "insert into ".$wpdb->prefix."auction_pm (subject, content, datemade, pid, initiator, user) values('$subject','$message','$tm','$pid','$myuid','$uid')";
//mysql_query($s) or die(mysql_error());
// $wpdb->show_errors = true;
$wpdb->query($s);
//echo $wpdb->last_error;
//-----------------------
$user = get_userdata($uid);
AuctionTheme_send_email_on_priv_mess_received($myuid, $uid)
//-----------------------
?>
<div class="my_box3">
<div class="padd10">
<?php _e('Your message has been sent.','AuctionTheme'); ?>
</div>
</div>
<?php
elseif($current_user->ID == $uid):
?>
<div class="error">
<?php _e('Cant send messsages to yourself','AuctionTheme'); ?>
</div>
<?php
else:
?>
<div class="my_box3">
<div class="padd10">
<?php _e('The message was not sent. The recipient does not exist.','AuctionTheme'); ?>
</div>
</div>
<?php
endif;
}
else
{
?>
<div class="my_box3">
<div class="padd10">
<div class="box_title"><?php echo sprintf(__("Send Private Message to: %s","AuctionTheme"), $user->user_login); ?></div>
<div class="box_content">
<form method="post" enctype="application/x-www-form-urlencoded">
<table>
<?php if(empty($uid)): ?>
<tr>
<td width="140"><?php _e("Send To", "AuctionTheme"); ?>:</td>
<td><input size="20" name="to" type="text" value="" /></td>
</tr>
<?php endif; ?>
<tr>
<td width="140"><?php _e("Subject", "AuctionTheme"); ?>:</td>
<td><input size="50" name="subject" type="text" value="<?php echo $subject; ?>" /></td>
</tr>
<tr>
<td valign="top"><?php _e("Message", "AuctionTheme"); ?>:</td>
<td><textarea name="message" rows="6" cols="50"></textarea></td>
</tr>
<tr>
<td width="140"> </td>
<td></td>
</tr>
<tr>
<td width="140"> </td>
<td><input name="send" type="submit" value="<?php _e("Send Message",'AuctionTheme'); ?>" /></td>
</tr>
</table>
</form>
</div>
</div>
</div>
<?php } } ?>
</div>
我尝试通过删除/添加“//”来解决代码的最后一点,有些导致发送电子邮件而不是消息,有些导致消息发送4次,但没有解决问题。
谢谢你们
答案 0 :(得分:1)
只是想让你知道我几周来一直在努力解决同样的问题,最后找到了解决方案。 在我的情况下,wordpress发送了两次电子邮件,并向数据库添加了一个额外不需要的空行。我终于找到了一个答案,表示它与表格或表格有关,或者只是不正确的HTML代码这没有任何意义,但是一旦我从周围删除了表格所有的PHP现在完全正常。我意识到在你的情况下表格是有道理的,但我仍然强烈建议你尝试用div重写它。因此我发现的其他答案与不正确的html和javascript以及未正确关闭的表单或div有关。 但是我不认为问题在于不正确的html使用,但是因为我没有找到一个案例,有人在wordpress之外有这个问题,似乎它可能只是一些 wordpress与表的缺陷 ,因为我多次检查我的代码,看起来是正确的。 无论如何好运,希望有帮助。