This commit is contained in:
2026-03-11 15:57:27 +01:00
parent 481271c972
commit b4b460fd21
10775 changed files with 2071579 additions and 26409 deletions

View File

@@ -0,0 +1,28 @@
<div class="fss_connection_info">
<table class="wp-list-table widefat striped">
<tr>
<th><?php esc_html_e('Connection Type', 'fluent-smtp') ?></th>
<td><?php echo esc_html($connection['provider']); ?></td>
</tr>
<tr>
<th><?php esc_html_e('Sender Email', 'fluent-smtp') ?></th>
<td><?php echo esc_html($connection['sender_email']); ?></td>
</tr>
<tr>
<th><?php esc_html_e('Sender Name', 'fluent-smtp') ?></th>
<td><?php echo esc_html($connection['sender_name']); ?></td>
</tr>
<tr>
<th><?php esc_html_e('Force Sender Name', 'fluent-smtp') ?></th>
<td><?php echo esc_html(ucfirst($connection['force_from_name'])); ?></td>
</tr>
<?php if(isset($connection['extra_rows'])) : ?>
<?php foreach ($connection['extra_rows'] as $row): ?>
<tr>
<th><?php echo esc_html($row['title']); ?></th>
<td><?php echo wp_kses_post($row['content']); ?></td>
</tr>
<?php endforeach; ?>
<?php endif; ?>
</table>
</div>