You are here

rooms_booking_email.tpl.php in Rooms - Drupal Booking for Hotels, B&Bs and Vacation Rentals 7

File

modules/rooms_booking_manager/rooms_booking_email.tpl.php
View source
<h1><?php

print t('Booking request');
?></h1>

<p><?php

print render($customer_name);
?></p>
<p><?php

print render($customer_email);
?></p>
<p><?php

print render($customer_add1);
?></p>
<p><?php

print render($customer_add2);
?></p>
<p><?php

print render($customer_city);
?></p>
<p><?php

print render($customer_state);
?></p>
<p><?php

print render($customer_country);
?></p>
<p><?php

print render($comments);
?></p>

<p></p>

<h2><?php

print t('Enquiry');
?></h2>
<?php

foreach ($booking_request as $request) {
  ?>
  <p><?php

  print render($request);
  ?></p>
<?php

}