# give/2.17.0/src/Framework/FieldsAPI/Email.php

GiveWP – Donation Plugin and Fundraising Platform, version 2.17.0. 23 lines.

- Page: https://pluginprobe.com/plugins/give/2.17.0/code/src/Framework/FieldsAPI/Email.php
- Raw: https://pluginprobe.com/plugins/give/2.17.0/raw/src/Framework/FieldsAPI/Email.php
- Modified: 2021-09-27T12:30:32+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/give/2.17.0/code/src/Framework/FieldsAPI/Email.php#L10-L20`.

```php
<?php

namespace Give\Framework\FieldsAPI;

/**
 * @since 2.12.0
 * @since 2.14.0 add min/max length validation
 */
class Email extends Field {

	use Concerns\AllowMultiple;
	use Concerns\HasEmailTag;
	use Concerns\HasHelpText;
	use Concerns\HasLabel;
	use Concerns\HasMaxLength;
	use Concerns\HasMinLength;
	use Concerns\HasPlaceholder;
	use Concerns\ShowInReceipt;
	use Concerns\StoreAsMeta;

	const TYPE = 'email';
}

```
