Panel - Contact

Everytime a user submits the contact form an email will be send to an adress which you can define (should be one of your own).

File: functions/mail-login-data.php
<?php
  /* in this file you can edit your mail login settings in order to be able to send mails */
  $yourHost = 'host';
  $yourUsername = 'username';
  $yourPassword = 'password';
  $yourPort = '587';
  $mailFrom = 'from@mail.com';
  $mailTo = 'to@mail.com';
  $yourSubject = 'new webform contact subscription';
?>