Closed (won't fix)
Project:
Openresort Community Edition
Version:
5.x-1.9-3
Component:
Code
Priority:
Normal
Category:
Support request
Assigned:
Unassigned
Reporter:
Created:
7 Aug 2008 at 19:47 UTC
Updated:
25 Jul 2011 at 01:59 UTC
Jump to comment: Most recent file
Comments
Comment #1
sgriffin commented3 identical emails are also generated after any booking.
Comment #2
deux commentedI need a bit help with the openresort too,
whenn you book something (single room) the booked room appear in the transaction workflow
then i become a message "Your itinerary is empty" so i dont have any rooms marked,
and the booked room should be mailed to the accomodator, right?
But no mails were sended
So i need help from someone who is succesfully using the openresort and the SMTP send mail
PLEASE ANYONE WHO CAN HELP :E :E
Comment #3
sgriffin commentedyou may need to test with payment COD setup. I believe, the emails are generated from the payment step.
Comment #4
dvasquez commentedNow, you only need this:
Hello, the case is in cart.module, search this:
// If the transaction is done, tell them and send them home (this is for transaction on-line)
if ($txn->gross <= 0) {
store_send_invoice_email($txn->txnid);
drupal_set_message(t('Your order has been submitted.'));
return 'reservas';
}
but, we're not sending on-line payments, then... my solution is:
// If the transaction is done, tell them and send them home
if ($txn->gross >= 0) { // this ">" send a mail because the gross is >= 0 and go mail, fly!
store_send_invoice_email($txn->txnid);
drupal_set_message(t('Your order has been submitted.'));
return 'reservas';
}
Comment #5
marcingy commentedProject is dead