Welcome,
Guest
.
Please
login
or
register
.
Did you miss your
activation email
?
News:
Elxis 5.5 Calypso supports 2 factor authentication login with e-mail or SMS.
Home
Help
Login
Register
Elxis CMS Forum
»
Extensions
»
Components
»
IOSReservations : Contact Form Hotels
« previous
next »
Print
Pages: [
1
]
Author
Topic: IOSReservations : Contact Form Hotels (Read 5317 times)
marbaz
Newbie
Posts: 21
IOSReservations : Contact Form Hotels
«
on:
August 27, 2012, 13:19:00 »
Is it possible to edit the "hotel contact form" so that it will sent the mails to for example support@mysite.com ?
I don't want people can send an email directly to the hotel but when they have questions about the hotel they fill in the contact-form and than the mail is sent to our support team..
Logged
webgift
Elxis Team
Hero Member
Posts: 4193
Re: IOSReservations : Contact Form Hotels
«
Reply #1 on:
August 27, 2012, 13:38:52 »
Yes you can do that.
Important
: It's not my fault in case that any issue will be generated there. Ok?
File: components/com_reservations/fcontrollers/hotels.controller.php
line: ~787
You will find and array called $info like :
$info = array (
'ownerid' => $hotel->ownerid,
'ownername' => $hotel->ownername,
'owneremail' => $hotel->owneremail,
'hotel' => $hotel->title,
'location' => $hotel->loctitle,
'ip' => $_SERVER['REMOTE_ADDR'],
'guestname' => $guestname,
'guesttaxy' => $guesttaxy,
'guestphone' => $guestphone,
'guestmobile' => $guestmobile,
'guestmsg' => $guestmsg,
'link' => $backlink
);
You should change the array's value of its key 'owneremail'. Like:
$info = array (
'ownerid' => $hotel->ownerid,
'ownername' => $hotel->ownername,
'owneremail' => 'support@mysite.com',
'hotel' => $hotel->title,
'location' => $hotel->loctitle,
'ip' => $_SERVER['REMOTE_ADDR'],
'guestname' => $guestname,
'guesttaxy' => $guesttaxy,
'guestphone' => $guestphone,
'guestmobile' => $guestmobile,
'guestmsg' => $guestmsg,
'link' => $backlink
);
«
Last Edit: August 27, 2012, 13:41:51 by webgift
»
Logged
Elxis Team •
Custom web design [EN]
-
[EL]
•
.GR Registrar
marbaz
Newbie
Posts: 21
Re: IOSReservations : Contact Form Hotels
«
Reply #2 on:
August 28, 2012, 19:24:55 »
Hi Webgift, i will try that,
thanks! :-)
Logged
marbaz
Newbie
Posts: 21
Re: IOSReservations : Contact Form Hotels
«
Reply #3 on:
August 28, 2012, 20:40:41 »
Worked like a charm :-)
Thanks!
Logged
webgift
Elxis Team
Hero Member
Posts: 4193
Re: IOSReservations : Contact Form Hotels
«
Reply #4 on:
August 29, 2012, 10:29:58 »
You are welcome, marbaz!
Logged
Elxis Team •
Custom web design [EN]
-
[EL]
•
.GR Registrar
Print
Pages: [
1
]
« previous
next »
Elxis CMS Forum
»
Extensions
»
Components
»
IOSReservations : Contact Form Hotels