for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* YAWIK
*
* @filesource
* @copyright https://yawik.org/COPYRIGHT.php
* @author [email protected]
* @license MIT
*/
namespace Applications\Form;
use Core\Form\Form;
* Formular for inviting or rejecting applicants
class Mail extends Form
{
* initialize mail forward form
public function init()
$this->setName('applicant-mail');
$this
->add(
array(
'type' => 'hidden',
'name' => 'applicationId',
)
'name' => 'status',
'name' => 'mailSubject',
'type' => 'textarea',
'name' => 'mailText'
);
}