/var/www/vhosts/ihelp.ro/httpdocs/src/Mailer
Edit: /var/www/vhosts/ihelp.ro/httpdocs/src/Mailer/FormMailer.php (1157B)
setProfile('default')
->setEmailFormat('html')
->setTo('contact@ihelp.ro')
->setFrom(['noreply@ihelp.ro' => 'iHelp.ro'])
->setSubject(__('Formular de contact iHelp'))
->setViewVars(['data' => $data])
->viewBuilder()
->setTemplate('contact'); // By default template with same name as method name is used.
}
public function share($data)
{
$this
// ->setProfile('default')
->setEmailFormat('html')
->setTo($data['email'])
->setFrom(['noreply@ihelp.ro' => 'iHelp.ro'])
->setSubject(__('Formular Share'))
// ->setViewVars(['data' => $data])
->viewBuilder()
->setTemplate('share'); // By default template with same name as method name is used.
}
}