Reputation: 2249
I want to implement email conformation field just like password conformation. for ex: user add email address in the first field and conform with other field. both must be same.
Upvotes: -1
Views: 1459
Reputation: 1299
The manual gives some helpful examples: Add new validators
There are three subpages where you can find examples how to create:
Upvotes: 1
Reputation: 3207
You can use below typoscript for custome powermail validation. Using powermailextended
extension.
plugin.tx_powermail {
settings.setup {
validation {
customValidation {
100 = In2code\Powermailextended\Domain\Validator\your_php_file_name
}
}
}
_LOCAL_LANG.default.validationerror_validation.100 = Please add a ZIP with 8 begginning
}
Upvotes: 1