BP_Email

Represents an email that will be sent to member(s).

Description

Source

File: bp-core/classes/class-bp-email.php

16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
class BP_Email {
    /**
     * Addressee details (BCC).
     *
     * @since BuddyPress 2.5.0
     *
     * @var BP_Email_Recipient[] BCC recipients.
     */
    protected $bcc = array();
 
    /**
     * Addressee details (CC).
     *
     * @since BuddyPress 2.5.0
     *
     * @var BP_Email_Recipient[] CC recipients.
     */
    protected $cc = array();
 
    /**
     * Email content (HTML).
     *
     * @since BuddyPress 2.5.0
     *
     * @var string
     */
    protected $content_html = '';
 
    /**
     * Email content (plain text).
     *
     * @since BuddyPress 2.5.0
     *
     * @var string
     */
    protected $content_plaintext = '';
 
    /**
     * The content type to send the email in ("html" or "plaintext").
     *
     * @since BuddyPress 2.5.0
     *
     * @var string
     */
    protected $content_type = 'html';
 
    /**
     * Sender details.
     *
     * @since BuddyPress 2.5.0
     *
     * @var BP_Email_Recipient Sender details.
     */
    protected $from = null;
 
    /**
     * Email headers.
     *
     * @since BuddyPress 2.5.0
     *
     * @var string[] Associative pairing of email header name/value.
     */
    protected $headers = array();
 
    /**
     * The Post object (the source of the email's content and subject).
     *
     * @since BuddyPress 2.5.0
     *
     * @var WP_Post
     */
    protected $post_object = null;
 
    /**
     * Reply To details.
     *
     * @since BuddyPress 2.5.0
     *
     * @var BP_Email_Recipient "Reply to" details.
     */
    protected $reply_to = null;
 
    /**
     * Email subject.
     *
     * @since BuddyPress 2.5.0
     *
     * @var string
     */
    protected $subject = '';
 
    /**
     * Email template (the HTML wrapper around the email content).
     *
     * @since BuddyPress 2.5.0
     *
     * @var string
     */
    protected $template = '{{{content}}}';
 
    /**
     * Addressee details (to).
     *
     * @since BuddyPress 2.5.0
     *
     * @var BP_Email_Recipient[] Email recipients.
     * }
     */
    protected $to = array();
 
    /**
     * Unique identifier for this particular type of email.
     *
     * @since BuddyPress 2.5.0
     *
     * @var string
     */
    protected $type = '';
 
    /**
     * Token names and replacement values for this email.
     *
     * @since BuddyPress 2.5.0
     *
     * @var string[] Associative pairing of token name (key) and replacement value (value).
     */
    protected $tokens = array();
 
    /**
     * Constructor.
     *
     * Set the email type and default "from" and "reply to" name and address.
     *
     * @since BuddyPress 2.5.0
     *
     * @param string $email_type Unique identifier for a particular type of email.
     */
    public function __construct( $email_type ) {
        $this->type = $email_type;
 
        // SERVER_NAME isn't always set (e.g CLI).
        if ( ! empty( $_SERVER['SERVER_NAME'] ) ) {
            $domain = strtolower( $_SERVER['SERVER_NAME'] );
            if ( substr( $domain, 0, 4 ) === 'www.' ) {
                $domain = substr( $domain, 4 );
            }
 
        } elseif ( function_exists( 'gethostname' ) && gethostname() !== false ) {
            $domain = gethostname();
 
        } elseif ( php_uname( 'n' ) !== false ) {
            $domain = php_uname( 'n' );
 
        } else {
            $domain = 'localhost.localdomain';
        }
 
        // This was escaped with esc_html on the way into the database in sanitize_option().
        $from_name    = wp_specialchars_decode( bp_get_option( 'blogname' ), ENT_QUOTES );
        $from_address = "wordpress@$domain";
 
        /** This filter is documented in wp-includes/pluggable.php */
        $from_address = apply_filters( 'wp_mail_from', $from_address );
 
        /** This filter is documented in wp-includes/pluggable.php */
        $from_name = apply_filters( 'wp_mail_from_name', $from_name );
 
        $this->set_from( $from_address, $from_name );
        $this->set_reply_to( bp_get_option( 'admin_email' ), $from_name );
 
        /**
         * Fires inside __construct() method for BP_Email class.
         *
         * @since BuddyPress 2.5.0
         *
         * @param string $email_type Unique identifier for this type of email.
         * @param BP_Email $this Current instance of the email type class.
         */
        do_action( 'bp_email', $email_type, $this );
    }
 
 
    /*
     * Setters/getters.
     */
 
    /**
     * Getter function to expose object properties.
     *
     * Unlike most other methods in this class, this one is not chainable.
     *
     * @since BuddyPress 2.5.0
     *
     * @param string $property_name Property to access.
     * @param string $transform Optional. How to transform the return value.
     *                          Accepts 'raw' (default) or 'replace-tokens'.
     * @return mixed Returns null if property does not exist, otherwise the value.
     */
    public function get( $property_name, $transform = 'raw' ) {
 
        // "content" is replaced by HTML or plain text depending on $content_type.
        if ( $property_name === 'content' ) {
            $property_name = 'content_' . $this->get_content_type();
 
            if ( ! in_array( $property_name, array( 'content_html', 'content_plaintext', ), true ) ) {
                $property_name = 'content_html';
            }
        }
 
        if ( ! property_exists( $this, $property_name ) ) {
            return null;
        }
 
 
        /**
         * Filters the value of the specified email property before transformation.
         *
         * This is a dynamic filter dependent on the specified key.
         *
         * @since BuddyPress 2.5.0
         *
         * @param mixed $property_value Property value.
         * @param string $property_name
         * @param string $transform How to transform the return value.
         *                          Accepts 'raw' (default) or 'replace-tokens'.
         * @param BP_Email $this Current instance of the email type class.
         */
        $retval = apply_filters( "bp_email_get_{$property_name}", $this->$property_name, $property_name, $transform, $this );
 
        switch ( $transform ) {
            // Special-case to fill the $template with the email $content.
            case 'add-content':
                $retval = str_replace( '{{{content}}}', wpautop( $this->get_content( 'replace-tokens' ) ), $retval );
                // Fall through.
 
            case 'replace-tokens':
                $retval = bp_core_replace_tokens_in_text( $retval, $this->get_tokens( 'raw' ) );
                // Fall through.
 
            case 'raw':
            default:
                // Do nothing.
        }
 
        /**
         * Filters the value of the specified email $property after transformation.
         *
         * @since BuddyPress 2.5.0
         *
         * @param string $retval Property value.
         * @param string $property_name
         * @param string $transform How to transform the return value.
         *                          Accepts 'raw' (default) or 'replace-tokens'.
         * @param BP_Email $this Current instance of the email type class.
         */
        return apply_filters( 'bp_email_get_property', $retval, $property_name, $transform, $this );
    }
 
    /**
     * Get email headers.
     *
     * Unlike most other methods in this class, this one is not chainable.
     *
     * @since BuddyPress 2.5.0
     *
     * @param string $transform Optional. How to transform the return value.
     *                          Accepts 'raw' (default) or 'replace-tokens'.
     * @return string[] Associative pairing of email header name/value.
     */
    public function get_headers( $transform = 'raw' ) {
        return $this->get( 'headers', $transform );
    }
 
    /**
     * Get the email's "bcc" address and name.
     *
     * Unlike most other methods in this class, this one is not chainable.
     *
     * @since BuddyPress 2.5.0
     *
     * @param string $transform Optional. How to transform the return value.
     *                          Accepts 'raw' (default) or 'replace-tokens'.
     * @return BP_Email_Recipient[] BCC recipients.
     */
    public function get_bcc( $transform = 'raw' ) {
        return $this->get( 'bcc', $transform );
    }
 
    /**
     * Get the email's "cc" address and name.
     *
     * Unlike most other methods in this class, this one is not chainable.
     *
     * @since BuddyPress 2.5.0
     *
     * @param string $transform Optional. How to transform the return value.
     *                          Accepts 'raw' (default) or 'replace-tokens'.
     * @return BP_Email_Recipient[] CC recipients.
     */
    public function get_cc( $transform = 'raw' ) {
        return $this->get( 'cc', $transform );
    }
 
    /**
     * Get the email content.
     *
     * HTML or plaintext is returned, depending on the email's $content_type.
     * Unlike most other methods in this class, this one is not chainable.
     *
     * @since BuddyPress 2.5.0
     *
     * @param string $transform Optional. How to transform the return value.
     *                          Accepts 'raw' (default) or 'replace-tokens'.
     * @return string HTML or plaintext, depending on $content_type.
     */
    public function get_content( $transform = 'raw' ) {
        return $this->get( 'content', $transform );
    }
 
    /**
     * Get the email content (in HTML).
     *
     * Unlike most other methods in this class, this one is not chainable.
     *
     * @since BuddyPress 2.5.0
     *
     * @param string $transform Optional. How to transform the return value.
     *                          Accepts 'raw' (default) or 'replace-tokens'.
     * @return string HTML email content.
     */
    public function get_content_html( $transform = 'raw' ) {
        return $this->get( 'content_html', $transform );
    }
 
    /**
     * Get the email content (in plaintext).
     *
     * Unlike most other methods in this class, this one is not chainable.
     *
     * @since BuddyPress 2.5.0
     *
     * @param string $transform Optional. How to transform the return value.
     *                          Accepts 'raw' (default) or 'replace-tokens'.
     * @return string Plain text email content.
     */
    public function get_content_plaintext( $transform = 'raw' ) {
        return $this->get( 'content_plaintext', $transform );
    }
 
    /**
     * Get the email content type (HTML or plain text) that the email will be sent in.
     *
     * Unlike most other methods in this class, this one is not chainable.
     *
     * @since BuddyPress 2.5.0
     *
     * @param string $transform Optional. How to transform the return value.
     *                          Accepts 'raw' (default) or 'replace-tokens'.
     * @return string Email content type ("html" or "plaintext").
     */
    public function get_content_type( $transform = 'raw' ) {
        return $this->get( 'content_type', $transform );
    }
 
    /**
     * Get the email's "from" address and name.
     *
     * Unlike most other methods in this class, this one is not chainable.
     *
     * @since BuddyPress 2.5.0
     *
     * @param string $transform Optional. How to transform the return value.
     *                          Accepts 'raw' (default) or 'replace-tokens'.
     * @return BP_Email_Recipient "From" recipient.
     */
    public function get_from( $transform = 'raw' ) {
        return $this->get( 'from', $transform );
    }
 
    /**
     * Get the Post associated with the email.
     *
     * Unlike most other methods in this class, this one is not chainable.
     *
     * @since BuddyPress 2.5.0
     *
     * @return WP_Post The post.
     */
    public function get_post_object( $transform = 'raw' ) {
        return $this->get( 'post_object', $transform );
    }
 
    /**
     * Get the email's "reply to" address and name.
     *
     * Unlike most other methods in this class, this one is not chainable.
     *
     * @since BuddyPress 2.5.0
     *
     * @param string $transform Optional. How to transform the return value.
     *                          Accepts 'raw' (default) or 'replace-tokens'.
     * @return BP_Email_Recipient "Reply to" recipient.
     */
    public function get_reply_to( $transform = 'raw' ) {
        return $this->get( 'reply_to', $transform );
    }
 
    /**
     * Get the email subject.
     *
     * Unlike most other methods in this class, this one is not chainable.
     *
     * @since BuddyPress 2.5.0
     *
     * @param string $transform Optional. How to transform the return value.
     *                          Accepts 'raw' (default) or 'replace-tokens'.
     * @return string Email subject.
     */
    public function get_subject( $transform = 'raw' ) {
        return $this->get( 'subject', $transform );
    }
 
    /**
     * Get the email template (the HTML wrapper around the email content).
     *
     * Unlike most other methods in this class, this one is not chainable.
     *
     * @since BuddyPress 2.5.0
     *
     * @param string $transform Optional. How to transform the return value.
     *                          Accepts 'raw' (default) or 'replace-tokens'.
     * @return string Email template. Assumed to be HTML.
     */
    public function get_template( $transform = 'raw' ) {
        return $this->get( 'template', $transform );
    }
 
    /**
     * Get the email's "to" address and name.
     *
     * Unlike most other methods in this class, this one is not chainable.
     *
     * @since BuddyPress 2.5.0
     *
     * @param string $transform Optional. How to transform the return value.
     *                          Accepts 'raw' (default) or 'replace-tokens'.
     * @return BP_Email_Recipient[] "To" recipients.
     */
    public function get_to( $transform = 'raw' ) {
        return $this->get( 'to', $transform );
    }
 
    /**
     * Get token names and replacement values for this email.
     *
     * Unlike most other methods in this class, this one is not chainable.
     *
     * @since BuddyPress 2.5.0
     *
     * @param string $transform Optional. How to transform the return value.
     *                          Accepts 'raw' (default) or 'replace-tokens'.
     * @return string[] Associative pairing of token name (key) and replacement value (value).
     */
    public function get_tokens( $transform = 'raw' ) {
        return $this->get( 'tokens', $transform );
    }
 
    /**
     * Set email headers.
     *
     * Does NOT let you override to/from, etc. Use the methods provided to set those.
     *
     * @since BuddyPress 2.5.0
     *
     * @param string[] $headers Key/value pairs of header name/values (strings).
     * @return BP_Email
     */
    public function set_headers( array $headers ) {
        $new_headers = array();
 
        foreach ( $headers as $name => $content ) {
            $content = str_replace( ':', '', $content );
            $name    = str_replace( ':', '', $name );
 
            $new_headers[ sanitize_key( $name ) ] = sanitize_text_field( $content );
        }
 
        /**
         * Filters the new value of the email's "headers" property.
         *
         * @since BuddyPress 2.5.0
         *
         * @param string[] $new_headers Key/value pairs of new header name/values (strings).
         * @param BP_Email $this Current instance of the email type class.
         */
        $this->headers = apply_filters( 'bp_email_set_headers', $new_headers, $this );
 
        return $this;
    }
 
    /**
     * Set the email's "bcc" address and name.
     *
     * To set a single address, the first parameter is the address and the second the name.
     * You can also pass a user ID or a WP_User object.
     *
     * To set multiple addresses, for each array item, the key is the email address and
     * the value is the name.
     *
     * @since BuddyPress 2.5.0
     *
     * @param string|array|int|WP_User $bcc_address Either an email address, user ID, WP_User object,
     *                                              or an array containing any combination of the above.
     * @param string $name Optional. If $bcc_address is a string, this is the recipient's name.
     * @param string $operation Optional. If "replace", $to_address replaces current setting (default).
     *                          If "add", $to_address is added to the current setting.
     * @return BP_Email
     */
    public function set_bcc( $bcc_address, $name = '', $operation = 'replace' ) {
        $bcc = ( $operation !== 'replace' ) ? $this->bcc : array();
 
        if ( is_array( $bcc_address ) ) {
            foreach ( $bcc_address as $address ) {
                $bcc[] = new BP_Email_Recipient( $address );
            }
 
        } else {
            $bcc[] = new BP_Email_Recipient( $bcc_address, $name );
        }
 
        /**
         * Filters the new value of the email's "BCC" property.
         *
         * @since BuddyPress 2.5.0
         *
         * @param BP_Email_Recipient[] $bcc BCC recipients.
         * @param string|array|int|WP_User $bcc_address Either an email address, user ID, WP_User object,
         *                                              or an array containing any combination of the above.
         * @param string $name Optional. If $bcc_address is a string, this is the recipient's name.
         * @param string $operation If "replace", $to_address replaced previous recipients. If "add",
         *                          $to_address was added to the array of recipients.
         * @param BP_Email $this Current instance of the email type class.
         */
        $this->bcc = apply_filters( 'bp_email_set_bcc', $bcc, $bcc_address, $name, $operation, $this );
 
        return $this;
    }
 
    /**
     * Set the email's "cc" address and name.
     *
     * To set a single address, the first parameter is the address and the second the name.
     * You can also pass a user ID or a WP_User object.
     *
     * To set multiple addresses, for each array item, the key is the email address and
     * the value is the name.
     *
     * @since BuddyPress 2.5.0
     *
     * @param string|array|int|WP_User $cc_address Either an email address, user ID, WP_User object,
     *                                             or an array containing any combination of the above.
     * @param string $name Optional. If $cc_address is a string, this is the recipient's name.
     * @param string $operation Optional. If "replace", $to_address replaces current setting (default).
     *                          If "add", $to_address is added to the current setting.
     * @return BP_Email
     */
    public function set_cc( $cc_address, $name = '', $operation = 'replace' ) {
        $cc = ( $operation !== 'replace' ) ? $this->cc : array();
 
        if ( is_array( $cc_address ) ) {
            foreach ( $cc_address as $address ) {
                $cc[] = new BP_Email_Recipient( $address );
            }
 
        } else {
            $cc[] = new BP_Email_Recipient( $cc_address, $name );
        }
 
        /**
         * Filters the new value of the email's "CC" property.
         *
         * @since BuddyPress 2.5.0
         *
         * @param BP_Email_Recipient[] $cc CC recipients.
         * @param string|array|int|WP_User $cc_address Either an email address, user ID, WP_User object,
         *                                             or an array containing any combination of the above.
         * @param string $name Optional. If $cc_address is a string, this is the recipient's name.
         * @param string $operation If "replace", $to_address replaced previous recipients. If "add",
         *                          $to_address was added to the array of recipients.
         * @param BP_Email $this Current instance of the email type class.
         */
        $this->cc = apply_filters( 'bp_email_set_cc', $cc, $cc_address, $name, $operation, $this );
 
        return $this;
    }
 
    /**
     * Set the email content (HTML).
     *
     * @since BuddyPress 2.5.0
     *
     * @param string $content HTML email content.
     * @return BP_Email
     */
    public function set_content_html( $content ) {
 
        /**
         * Filters the new value of the email's "content" property (HTML).
         *
         * @since BuddyPress 2.5.0
         *
         * @param string $content HTML email content.
         * @param BP_Email $this Current instance of the email type class.
         */
        $this->content_html = apply_filters( 'bp_email_set_content_html', $content, $this );
 
        return $this;
    }
 
    /**
     * Set the email content (plain text).
     *
     * @since BuddyPress 2.5.0
     *
     * @param string $content Plain text email content.
     * @return BP_Email
     */
    public function set_content_plaintext( $content ) {
 
        /**
         * Filters the new value of the email's "content" property (plain text).
         *
         * @since BuddyPress 2.5.0
         *
         * @param string $content Plain text email content.
         * @param BP_Email $this Current instance of the email type class.
         */
        $this->content_plaintext = apply_filters( 'bp_email_set_content_plaintext', $content, $this );
 
        return $this;
    }
 
    /**
     * Set the content type (HTML or plain text) to send the email in.
     *
     * @since BuddyPress 2.5.0
     *
     * @param string $content_type Email content type ("html" or "plaintext").
     * @return BP_Email
     */
    public function set_content_type( $content_type ) {
        if ( ! in_array( $content_type, array( 'html', 'plaintext', ), true ) ) {
            $class        = get_class_vars( get_class() );
            $content_type = $class['content_type'];
        }
 
        /**
         * Filters the new value of the email's "content type" property.
         *
         * The content type (HTML or plain text) to send the email in.
         *
         * @since BuddyPress 2.5.0
         *
         * @param string $content_type Email content type ("html" or "plaintext").
         * @param BP_Email $this Current instance of the email type class.
         */
        $this->content_type = apply_filters( 'bp_email_set_content_type', $content_type, $this );
 
        return $this;
    }
 
    /**
     * Set the email's "from" address and name.
     *
     * @since BuddyPress 2.5.0
     *
     * @param string|array|int|WP_User $email_address Either an email address, user ID, or WP_User object.
     * @param string $name Optional. If $email_address is a string, this is the recipient's name.
     * @return BP_Email
     */
    public function set_from( $email_address, $name = '' ) {
        $from = new BP_Email_Recipient( $email_address, $name );
 
        /**
         * Filters the new value of the email's "from" property.
         *
         * @since BuddyPress 2.5.0
         *
         * @param BP_Email_Recipient $from Sender details.
         * @param string|array|int|WP_User $email_address Either an email address, user ID, or WP_User object.
         * @param string $name Optional. If $email_address is a string, this is the recipient's name.
         * @param BP_Email $this Current instance of the email type class.
         */
        $this->from = apply_filters( 'bp_email_set_from', $from, $email_address, $name, $this );
 
        return $this;
    }
 
    /**
     * Set the Post object containing the email content template.
     *
     * Also sets the email's subject, content, and template from the Post, for convenience.
     *
     * @since BuddyPress 2.5.0
     *
     * @param WP_Post $post
     * @return BP_Email
     */
    public function set_post_object( WP_Post $post ) {
 
        /**
         * Filters the new value of the email's "post object" property.
         *
         * @since BuddyPress 2.5.0
         *
         * @param WP_Post $post A Post.
         * @param BP_Email $this Current instance of the email type class.
         */
        $this->post_object = apply_filters( 'bp_email_set_post_object', $post, $this );
 
        if ( is_a( $this->post_object, 'WP_Post' ) ) {
            $this->set_subject( $this->post_object->post_title )
                ->set_content_html( $this->post_object->post_content )
                ->set_content_plaintext( $this->post_object->post_excerpt );
 
            ob_start();
 
            // Load the template.
            add_filter( 'bp_locate_template_and_load', '__return_true' );
 
            bp_locate_template( bp_email_get_template( $this->post_object ), true, false );
 
            remove_filter( 'bp_locate_template_and_load', '__return_true' );
 
            $this->set_template( ob_get_contents() );
 
            ob_end_clean();
        }
 
        return $this;
    }
 
    /**
     * Set the email's "reply to" address and name.
     *
     * @since BuddyPress 2.5.0
     *
     * @param string|array|int|WP_User $email_address Either an email address, user ID, WP_User object,
     *                                                or an array containing any combination of the above.
     * @param string $name Optional. If $email_address is a string, this is the recipient's name.
     * @return BP_Email
     */
    public function set_reply_to( $email_address, $name = '' ) {
        $reply_to = new BP_Email_Recipient( $email_address, $name );
 
        /**
         * Filters the new value of the email's "reply to" property.
         *
         * @since BuddyPress 2.5.0
         *
         * @param BP_Email_Recipient $reply_to "Reply to" recipient.
         * @param string|array|int|WP_User $email_address Either an email address, user ID, WP_User object,
         *                                                or an array containing any combination of the above.
         * @param string $name Optional. If $email_address is a string, this is the recipient's name.
         * @param BP_Email $this Current instance of the email type class.
         */
        $this->reply_to = apply_filters( 'bp_email_set_reply_to', $reply_to, $email_address, $name, $this );
 
        return $this;
    }
 
    /**
     * Set the email subject.
     *
     * @since BuddyPress 2.5.0
     *
     * @param string $subject Email subject.
     * @return BP_Email
     */
    public function set_subject( $subject ) {
 
        /**
         * Filters the new value of the subject email property.
         *
         * @since BuddyPress 2.5.0
         *
         * @param string $subject Email subject.
         * @param BP_Email $this Current instance of the email type class.
         */
        $this->subject = apply_filters( 'bp_email_set_subject', $subject, $this );
 
        return $this;
    }
 
    /**
     * Set the email template (the HTML wrapper around the email content).
     *
     * This needs to include the string "{{{content}}}" to have the post content added
     * when the email template is rendered.
     *
     * @since BuddyPress 2.5.0
     *
     * @param string $template Email template. Assumed to be HTML.
     * @return BP_Email
     */
    public function set_template( $template ) {
 
        /**
         * Filters the new value of the template email property.
         *
         * @since BuddyPress 2.5.0
         *
         * @param string $template Email template. Assumed to be HTML.
         * @param BP_Email $this Current instance of the email type class.
         */
        $this->template = apply_filters( 'bp_email_set_template', $template, $this );
 
        return $this;
    }
 
    /**
     * Set the email's "to" address and name.
     *
     * IMPORTANT NOTE: the assumption with all emails sent by (and belonging to) BuddyPress itself
     * is that there will only be a single `$to_address`. This is to simplify token and templating
     * logic (for example, if multiple recipients, the "unsubscribe" link in the emails will all
     * only link to the first recipient).
     *
     * To set a single address, the first parameter is the address and the second the name.
     * You can also pass a user ID or a WP_User object.
     *
     * To set multiple addresses, for each array item, the key is the email address and
     * the value is the name.
     *
     * @since BuddyPress 2.5.0
     *
     * @param string|array|int|WP_User $to_address Either an email address, user ID, WP_User object,
     *                                             or an array containing any combination of the above.
     * @param string $name Optional. If $to_address is a string, this is the recipient's name.
     * @param string $operation Optional. If "replace", $to_address replaces current setting (default).
     *                          If "add", $to_address is added to the current setting.
     * @return BP_Email
     */
    public function set_to( $to_address, $name = '', $operation = 'replace' ) {
        $to = ( $operation !== 'replace' ) ? $this->to : array();
 
        if ( is_array( $to_address ) ) {
            foreach ( $to_address as $address ) {
                $to[] = new BP_Email_Recipient( $address );
            }
 
        } else {
            $to[] = new BP_Email_Recipient( $to_address, $name );
        }
 
        /**
         * Filters the new value of the email's "to" property.
         *
         * @since BuddyPress 2.5.0
         *
         * @param BP_Email_Recipient[] "To" recipients.
         * @param string $to_address "To" address.
         * @param string $name "To" name.
         * @param string $operation If "replace", $to_address replaced previous recipients. If "add",
         *                          $to_address was added to the array of recipients.
         * @param BP_Email $this Current instance of the email type class.
         */
        $this->to = apply_filters( 'bp_email_set_to', $to, $to_address, $name, $operation, $this );
 
        return $this;
    }
 
    /**
     * Set token names and replacement values for this email.
     *
     * In templates, tokens are inserted with a Handlebars-like syntax, e.g. `{{token_name}}`.
     * { and } are reserved characters. There's no need to specify these brackets in your token names.
     *
     * @since BuddyPress 2.5.0
     *
     * @param string[] $tokens Associative array, contains key/value pairs of token name/value.
     *                         Values are a string or a callable function.
     * @return BP_Email
     */
    public function set_tokens( array $tokens ) {
        $formatted_tokens = array();
 
        foreach ( $tokens as $name => $value ) {
            $name                      = str_replace( array( '{', '}' ), '', sanitize_text_field( $name ) );
            $formatted_tokens[ $name ] = $value;
        }
 
        /**
         * Filters the new value of the email's "tokens" property.
         *
         * @since BuddyPress 2.5.0
         *
         * @param string[] $formatted_tokens Associative pairing of token names (key)
         *                                   and replacement values (value).
         * @param string[] $tokens           Associative pairing of unformatted token
         *                                   names (key) and replacement values (value).
         * @param BP_Email $this             Current instance of the email type class.
         */
        $this->tokens = apply_filters( 'bp_email_set_tokens', $formatted_tokens, $tokens, $this );
 
        return $this;
    }
 
 
    /*
     * Sanitisation and validation logic.
     */
 
    /**
     * Check that we'd be able to send this email.
     *
     * Unlike most other methods in this class, this one is not chainable.
     *
     * @since BuddyPress 2.5.0
     *
     * @return bool|WP_Error Returns true if validation succesful, else a descriptive WP_Error.
     */
    public function validate() {
        $retval = true;
 
        // BCC, CC, and token properties are optional.
        if (
            ! $this->get_from() ||
            ! $this->get_to() ||
            ! $this->get_subject() ||
            ! $this->get_content() ||
            ! $this->get_template()
        ) {
            $retval = new WP_Error( 'missing_parameter', __CLASS__, $this );
        }
 
        /**
         * Filters whether the email passes basic validation checks.
         *
         * @since BuddyPress 2.5.0
         *
         * @param bool|WP_Error $retval Returns true if validation succesful, else a descriptive WP_Error.
         * @param BP_Email $this Current instance of the email type class.
         */
        return apply_filters( 'bp_email_validate', $retval, $this );
    }
}

Changelog

Changelog
Version Description
BuddyPress 2.5.0 Introduced.

Methods

Questions?

We're always happy to help with code or other questions you might have! Search our developer docs, contact support, or connect with our sales team.