Jump to content

Problemen Met Contact_Form E-Mail


Recommended Posts

 

Hoi allen,

 

Wij lopen tegen wat problemen aan met het contactformulier.

 

Bij het versturen van een bericht krijgt de gebruiker automatisch een email. Deze email (contact_form) willen we uit zetten, maar dat lukt vooralsnog niet.

 

Ik heb van alles geprobeerd in ContactController.php - zonder succes. Telkens had het geen effect of was de contactpagina niet meer zichtbaar.

Naast het feit dat deze uit mag staat in de titel (ook bij de reacties op die email) een "#ct%1$s #tc%2$s" in de titel. Dit mag wat ons betreft ook verdwijnen.

 

In dit stuk code ben ik bezig geweest, maar zonder succes. Iemand het verlossende antwoord?

 

 

 

if (empty($contact->email)) {
                        Mail::Send($this->context->language->id, 'contact_form', ((isset($ct) && Validate::isLoadedObject($ct)) ? sprintf(Mail::l('Your message has been correctly sent #ct%1$s #tc%2$s'), $ct->id, $ct->token) : Mail::l('Your message has been correctly sent')), $var_list, $from, null, null, null, $file_attachment);
                    } else {
                        if (!Mail::Send($this->context->language->id, 'contact', Mail::l('Message from contact form').' [no_sync]',
                            $var_list, $contact->email, $contact->name, null, null,
                                    $file_attachment, null,    _PS_MAIL_DIR_, false, null, null, $from) ||
                               !Mail::Send($this->context->language->id, 'contact_form', ((isset($ct) && Validate::isLoadedObject($ct)) ? sprintf(Mail::l('Your message has been correctly sent #ct%1$s #tc%2$s'), $ct->id, $ct->token) : Mail::l('Your message has been correctly sent')), $var_list, $from, null, null, null, $file_attachment, null, _PS_MAIL_DIR_, false, null, null, $contact->email)) {
                            $this->errors[] = Tools::displayError('An error occurred while sending the message.');
                        }
                    } 
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...