# fluent-community/2.10.01/app/Views/email/Default/_invitation.php

FluentCommunity – Ultra-Fast High-Performance Social Network, Community, LMS &amp; Online Courses, version 2.10.01. 34 lines.

- Page: https://pluginprobe.com/plugins/fluent-community/2.10.01/code/app/Views/email/Default/_invitation.php
- Raw: https://pluginprobe.com/plugins/fluent-community/2.10.01/raw/app/Views/email/Default/_invitation.php
- Modified: 2026-07-24T13:35:06+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/fluent-community/2.10.01/code/app/Views/email/Default/_invitation.php#L10-L20`.

```php
<?php if ( ! defined( 'ABSPATH' ) ) { exit;} // Exit if accessed directly ?>
<?php
/**
 * @var string $invitee_name
 * @var string $by_name
 * @var string $by_email
 * @var string $site_title
 * @var string $access_url
 */
$fluentCommunityInviteeName = $invitee_name ?? '';
$fluentCommunityByName = $by_name ?? '';
$fluentCommunitySiteTitle = $site_title ?? '';
$fluentCommunityAccessUrl = $access_url ?? '';
?>
<div style="background-color: #ffffff; padding: 20px; border-radius: 8px;">
    <?php /* translators: %s is replaced by the name of the user who is invited */ ?>
    <p><?php echo esc_html(sprintf(__('Hey %s,', 'fluent-community'), $fluentCommunityInviteeName)); ?></p>
    <p>
    <?php
        /* translators: %1$s is replaced by the name of the user who invited the user, %2$s is replaced by the title of the site */
        echo wp_kses_post(sprintf(__('%1$s has invited you to join in %2$s.', 'fluent-community'),
            '<strong>'.$fluentCommunityByName.'</strong>',
            '<strong>'.$fluentCommunitySiteTitle.'</strong>'
        ));
        ?>
    </p>

    <p><?php esc_html_e('Click the link below to accept the invitation:', 'fluent-community'); ?></p>

    <a href="<?php echo esc_url($fluentCommunityAccessUrl); ?>" style="background-color: #000000; color: #ffffff; padding: 10px 20px; text-align: center; border-radius: 5px; display: inline-block; text-decoration: none;">
        <?php esc_html_e('Accept invitation', 'fluent-community'); ?>
    </a>
</div>

```
