# acymailing/trunk/front/FrontViews/Frontcampaigns/tmpl/edit_email_info.php

AcyMailing – An Ultimate Newsletter Plugin and Marketing Automation Solution for WordPress, version trunk. 20 lines.

- Page: https://pluginprobe.com/plugins/acymailing/trunk/code/front/FrontViews/Frontcampaigns/tmpl/edit_email_info.php
- Raw: https://pluginprobe.com/plugins/acymailing/trunk/raw/front/FrontViews/Frontcampaigns/tmpl/edit_email_info.php
- Modified: 2026-08-03T10:18:54+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/acymailing/trunk/code/front/FrontViews/Frontcampaigns/tmpl/edit_email_info.php#L10-L20`.

```php
<?php
// phpcs:disable WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound -- View file, its variables are local to the include scope, not true globals.
defined('ABSPATH') || die('Restricted Access');
?>
<div class="cell grid-x grid-margin-x margin-y">
	<div class="cell large-6">
		<label>
            <?php echo esc_html(acym_translation('ACYM_CAMPAIGN_NAME')); ?>
			<input name="mail[name]" type="text" value="<?php echo esc_attr($data['mailInformation']->name); ?>">
		</label>
	</div>

    <?php
    if (empty($data['multilingual']) && empty($data['abtest'])) {
        $preheaderSize = '';
        include acym_getView('campaigns', 'edit_email_info_content', true);
    }
    ?>
</div>

```
