@@ -61,6 +61,7 @@ discard block |
||
61 | 61 | * @param string $subject |
62 | 62 | * |
63 | 63 | * @since 13.0.0 |
64 | + * @return void |
|
64 | 65 | */ |
65 | 66 | public function setSubject($subject); |
66 | 67 | |
@@ -68,6 +69,7 @@ discard block |
||
68 | 69 | * Adds a header to the email |
69 | 70 | * |
70 | 71 | * @since 12.0.0 |
72 | + * @return void |
|
71 | 73 | */ |
72 | 74 | public function addHeader(); |
73 | 75 | |
@@ -79,6 +81,7 @@ discard block |
||
79 | 81 | * if empty the $title is used, if false none will be used |
80 | 82 | * |
81 | 83 | * @since 12.0.0 |
84 | + * @return void |
|
82 | 85 | */ |
83 | 86 | public function addHeading($title, $plainTitle = ''); |
84 | 87 | |
@@ -88,8 +91,10 @@ discard block |
||
88 | 91 | * @param string $text; Note: When $plainText falls back to this, HTML is automatically escaped in the HTML email |
89 | 92 | * @param string|bool $plainText Text that is used in the plain text email |
90 | 93 | * if empty the $text is used, if false none will be used |
94 | + * @param string $text |
|
91 | 95 | * |
92 | 96 | * @since 12.0.0 |
97 | + * @return void |
|
93 | 98 | */ |
94 | 99 | public function addBodyText($text, $plainText = ''); |
95 | 100 | |
@@ -103,7 +108,9 @@ discard block |
||
103 | 108 | * if empty the $text is used, if false none will be used |
104 | 109 | * @param string $plainMetaInfo Meta info that is used in the plain text email |
105 | 110 | * if empty the $metaInfo is used, if false none will be used |
111 | + * @param string $text |
|
106 | 112 | * @since 12.0.0 |
113 | + * @return void |
|
107 | 114 | */ |
108 | 115 | public function addBodyListItem($text, $metaInfo = '', $icon = '', $plainText = '', $plainMetaInfo = ''); |
109 | 116 | |
@@ -118,6 +125,7 @@ discard block |
||
118 | 125 | * @param string $plainTextRight Text of right button that is used in the plain text version - if empty the $textRight is used |
119 | 126 | * |
120 | 127 | * @since 12.0.0 |
128 | + * @return void |
|
121 | 129 | */ |
122 | 130 | public function addBodyButtonGroup($textLeft, $urlLeft, $textRight, $urlRight, $plainTextLeft = '', $plainTextRight = ''); |
123 | 131 | |
@@ -130,6 +138,7 @@ discard block |
||
130 | 138 | * if empty the $text is used, if false none will be used |
131 | 139 | * |
132 | 140 | * @since 12.0.0 |
141 | + * @return void |
|
133 | 142 | */ |
134 | 143 | public function addBodyButton($text, $url, $plainText = ''); |
135 | 144 | |
@@ -139,6 +148,7 @@ discard block |
||
139 | 148 | * @param string $text If the text is empty the default "Name - Slogan<br>This is an automatically sent email" will be used |
140 | 149 | * |
141 | 150 | * @since 12.0.0 |
151 | + * @return void |
|
142 | 152 | */ |
143 | 153 | public function addFooter($text = ''); |
144 | 154 |