1. Go to this page and download the library: Download c975l/contactform-bundle library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
c975l / contactform-bundle example snippets
namespace AppBundle\EventSubscriber;
use Symfony\Component\EventDispatcher\EventSubscriberInterface;
use c975L\ContactFormBundle\Event\ContactFormEvent;
class ContactFormSubscriber implements EventSubscriberInterface
{
public static function getSubscribedEvents()
{
return array(
ContactFormEvent::CREATE_FORM => 'createForm',
);
}
public function createForm($event)
{
//Gets data
$formData = $event->getFormData();
$subject = $formData->getSubject();
//For example, you can check if a string is present in the subject
if (stripos($subject, 'THE_STRING_YOU_WANT_TO_MATCH_IN_THE_SUBJECT') === 0) {
$event->setReceiveCopy(false);
}
}
}
namespace AppBundle\EventSubscriber;
use Symfony\Component\EventDispatcher\EventSubscriberInterface;
use c975L\ContactFormBundle\Event\ContactFormEvent;
class ContactFormSubscriber implements EventSubscriberInterface
{
public static function getSubscribedEvents()
{
return array(
ContactFormEvent::SEND_FORM => 'sendForm',
);
}
public function sendForm($event)
{
//Gets data
$formData = $event->getFormData();
$subject = $formData->getSubject();
//For example, you can check if a string is present in the subject
if (stripos($subject, 'THE_STRING_YOU_WANT_TO_MATCH_IN_THE_SUBJECT') === 0) {
//Do the stuff...
//Conditions to send email are met
if (1 == 1) {
//Defines data for email
$bodyEmail = 'YOUR_EMAIL_TEMPLATE.html.twig';
$bodyData = array(
//Any needed data for your template
);
//The following array keys are mandatory, but you can set the other keys defined in c975L\EmailBundle
$emailData = array(
'subject' => 'YOUR_EMAIL_SUBJECT',
'bodyData' => $bodyData,
'bodyEmail' => $bodyEmail,
);
//Updates event
$event->setEmailData($emailData);
//Stop sending by setting an error code, it will create a flash including your error code
} else {
$event->setError('YOUR_ERROR_CODE');
}
}
}
}
namespace AppBundle\EventSubscriber;
use Symfony\Component\EventDispatcher\EventSubscriberInterface;
use c975L\ContactFormBundle\Event\ContactFormEvent;
class ContactFormSubscriber implements EventSubscriberInterface
{
public static function getSubscribedEvents()
{
return array(
ContactFormEvent::CREATE_FORM => 'createForm',
);
}
public function createForm($event)
{
//Updates url to redirect
$event->getRequest()->getSession()->set('redirectUrl', 'https://example.com');
}
}
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.