我遇到与此类似的问题:How to edit the registration email sent by buddypress for activating users
在Buddypress中,如果用户发送了一条"私信"对于其他用户,用户将通过电子邮件通知消息的全文。
如何删除或缩短/摘录邮件正文?
这是我的意思:
亚历山大给你发了一条新消息:
主题:你好
"喂 43545345" < - 这是我要删除/替换或摘录的正文
要查看和阅读您的消息,请登录并访问:http://www.mycolombianwife.com/members/alexandra/messages/
要停用这些通知,请登录并转到:http://www.mycolombianwife.com/members/alexandra/settings/notifications/
答案 0 :(得分:0)
使用提供的过滤器挂钩。 在bp-custom.php
中试用此功能function user3461751_email_content( $email_content, $sender_name, $subject, $content, $message_link, $settings_link, $ud ) {
$email_content = 'replacement text';
return $email_content;
}
add_filter('messages_notification_new_message_message', 'user3461751_email_content', 10, 7 );