Changeset 3362
- Timestamp:
- 11/06/2010 02:32:52 PM (14 years ago)
- Location:
- trunk
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/bp-activity/bp-activity-notifications.php
r3300 r3362 52 52 } 53 53 } 54 55 do_action( 'bp_activity_sent_mention_email', $usernames, $subject, $message, $content, $poster_user_id, $activity_id ); 54 56 } 55 57 add_action( 'bp_activity_posted_update', 'bp_activity_at_message_notification', 10, 3 ); … … 94 96 95 97 wp_mail( $to, $subject, $message ); 98 99 do_action( 'bp_activity_sent_reply_to_update_email', $original_activity->user_id, $subject, $message, $comment_id, $commenter_id, $params ); 96 100 } 97 101 … … 137 141 138 142 wp_mail( $to, $subject, $message ); 143 144 do_action( 'bp_activity_sent_reply_to_reply_email', $original_activity->user_id, $subject, $message, $comment_id, $commenter_id, $params ); 139 145 } 140 146 } -
trunk/bp-core/bp-core-filters.php
r3358 r3362 206 206 207 207 wp_mail( $to, $subject, $message, $message_headers ); 208 209 do_action( 'bp_core_sent_blog_signup_email', $admin_email, $subject, $message, $domain, $path, $title, $user, $user_email, $key, $meta ); 208 210 209 211 // Return false to stop the original WPMU function from continuing … … 239 241 wp_mail( $to, $subject, $message, $message_headers ); 240 242 243 do_action( 'bp_core_sent_user_signup_email', $admin_email, $subject, $message, $user, $user_email, $key, $meta ); 244 241 245 // Return false to stop the original WPMU function from continuing 242 246 return false; -
trunk/bp-core/bp-core-signup.php
r3358 r3362 592 592 593 593 wp_mail( $to, $subject, $message, $message_headers ); 594 595 do_action( 'bp_core_sent_user_validation_email', $admin_email, $subject, $message, $user_id, $user_email, $key ); 594 596 } 595 597 -
trunk/bp-friends/bp-friends-notifications.php
r3300 r3362 40 40 41 41 wp_mail( $to, $subject, $message ); 42 43 do_action( 'bp_friends_sent_request_email', $friend_id, $subject, $message, $friendship_id, $initiator_id ); 42 44 } 43 45 … … 78 80 79 81 wp_mail( $to, $subject, $message ); 82 83 do_action( 'bp_friends_sent_accepted_email', $initator_id, $subject, $message, $friendship_id, $friend_id ); 80 84 } 81 85 -
trunk/bp-groups/bp-groups-notifications.php
r3300 r3362 39 39 unset( $message, $to ); 40 40 } 41 42 do_action( 'bp_groups_sent_updated_email', $user_ids, $subject, $message, $group_id ); 41 43 } 42 44 … … 85 87 86 88 wp_mail( $to, $subject, $message ); 89 90 do_action( 'bp_groups_sent_membership_request_email', $admin_id, $subject, $message, $requesting_user_id, $group_id, $membership_id ); 87 91 } 88 92 … … 139 143 140 144 wp_mail( $to, $subject, $message ); 145 146 do_action( 'bp_groups_sent_membership_approved_email', $requesting_user_id, $subject, $message, $group_id ); 141 147 } 142 148 … … 185 191 186 192 wp_mail( $to, $subject, $message ); 193 194 do_action( 'bp_groups_sent_promoted_email', $user_id, $subject, $message, $group_id ); 187 195 } 188 196 add_action( 'groups_promoted_member', 'groups_notification_promoted_member', 10, 2 ); … … 238 246 wp_mail( $to, $subject, $message ); 239 247 } 248 249 do_action( 'bp_groups_sent_invited_email', $invited_user_id, $subject, $message, $group ); 240 250 } 241 251 … … 297 307 } 298 308 } 309 310 do_action( 'bp_groups_sent_mention_email', $usernames, $subject, $message, $content, $poster_user_id, $group_id, $activity_id ); 299 311 } 300 312 add_action( 'bp_groups_posted_update', 'groups_at_message_notification', 10, 4 ); -
trunk/bp-messages/bp-messages-notifications.php
r3300 r3362 44 44 wp_mail( $email_to, $email_subject, $email_content ); 45 45 } 46 47 do_action( 'bp_messages_sent_notification_email', $recipients, $email_subject, $email_content, $args ); 46 48 } 47 49
Note: See TracChangeset
for help on using the changeset viewer.