get_connected_user_email() public static method

Get the wpcom email of the current|specified connected user.
public static get_connected_user_email ( $user_id = null )
Example #1
0
    public function jetpack_configuration_screen()
    {
        ?>
		<p><?php 
        esc_html_e('Nobody likes downtime, and that\'s why Jetpack Monitor is on the job, keeping tabs on your site by checking it every five minutes. As soon as any downtime is detected, you will receive an email notification alerting you to the issue. That way you can act quickly, to get your site back online again!', 'jetpack');
        ?>
		<p><?php 
        esc_html_e('We’ll also let you know as soon as your site is up and running, so you can keep an eye on total downtime.', 'jetpack');
        ?>
</p>
		<div class="narrow">
		<?php 
        if (Jetpack::is_user_connected() && current_user_can('manage_options')) {
            ?>
			<?php 
            $user_email = Jetpack::get_connected_user_email();
            ?>
			<form method="post" id="monitor-settings">
				<input type="hidden" name="action" value="monitor-save" />
				<?php 
            wp_nonce_field('monitor-settings');
            ?>

				<table id="menu" class="form-table">
						<tr>
						<th scope="row">
							<?php 
            _e('Notifications', 'jetpack');
            ?>
						</th>
						<td>
							<label for="receive_jetpack_monitor_notification">
									<input type="checkbox" name="receive_jetpack_monitor_notification" id="receive_jetpack_monitor_notification" value="receive_jetpack_monitor_notification"<?php 
            checked($this->user_receives_notifications());
            ?>
 />
								<span><?php 
            _e('Receive Monitor Email Notifications.', 'jetpack');
            ?>
</span>
							</label>
							<p class="description"><?php 
            printf(__('Emails will be sent to %s (<a href="%s">Edit</a>)', 'jetpack'), $user_email, 'https://wordpress.com/settings/account/');
            ?>
</p>
						</td>
					</tr>
				</table>
				<?php 
            submit_button();
            ?>
			</form>
		<?php 
        } else {
            ?>
			<p><?php 
            _e('This profile is not currently linked to a WordPress.com Profile.', 'jetpack');
            ?>
</p>
		<?php 
        }
        ?>
		</div>
		<?php 
    }