Booking Stack - Yuzool

Solution is fixed here:

2 Likes

Thank you very much for your help @yuzool. I’m so glad the problem is fixed. I use the stack for the website of client, a restaurant, and he kept complaining about the booking form on his site. Thanks Michael for fixing the problem.

Have a great weekend,

Hans

1 Like

Hello yuzool,

I have just bought your stack.

As I can see you are open to suggestions and motivated to improve your stack always, I want to ask you if you can consider the following points for the next update.

  1. I would love to be able to select which day consumers can book my service. For example, I want clients to call me for a specific service just on Tuesdays and Thursdays.

  2. Also, I would like to have the option to set a calendar limit, so that people cannot book for April 2020 etc. That would be handy. So, for instance I want to limit the booking slots for three months only from today

  3. Lastly, it would be lovely if there would be the chance to integrate inside booking stack other stacks as well.

Thank you.

I am looking forward to seeing this stack shine with more added features. :slight_smile:

1 Like

Great comments @Adri12

Always open to ideas and feedback has helped me shape all Stacks etc - it’s a win-win approach! :slight_smile:

So thanks for noticing and for taking the time to write in and will definitely consider these for the next round of updates

2 Likes

Hi :grinning:

ā€œEmail notifications to site admin and booker when a reservation is placedā€ donĀ“t work…how to fix this?:sweat:

All other formulas create with FormLoom works on this Server.

Hi Tayler,

have you fix the problem with EMAIL NOTIFICATION ?
I have the same problems but no answer from developer…

best regards
Sefa

I have also the problem that email is not working not with SMTP and also not without SMTP. I have another contact form on the site that does not use SMTP and works fine.

Same problem…i have buy it…can not use it…but i need it!
Have send lots of Mails to developer…NO ANSWER!

His website no longer loads on an iPhone, except for the Black Friday bundle. I was trying to check out his Black Friday specials but couldn’t. I don’t know what’s going on with @yuzool

@yuzool Hello some response please?

You better check your iPhone. Loads all fine for me.

2 Likes

Got your DM message @HotDrive and replied with some ideas on how to make it work :slight_smile:

@jasperkok

  • are you using the latest version? Booking Stack - Yuzool
  • emails are sensitive! Can you double check the SMTP option in the Stack?
  • can you try without SMTP? Any errors?
  • can you try another email address not on the same server? e.g. Gmail or Hotmail or something…

The Stack uses PHPmailer (https://github.com/PHPMailer/PHPMailer) - who do you host with and is this compatible with their servers?

Yes i have check this with more e-mail adreses…from server we donĀ“t get e-mail adreses.

With and without SMTP:

It is the lates Version of BookingStack

Other Stacks as FormLoom 3 or 4 are runnig without problems and the same emails adresses.

PHPMailer works fine on my server using below PHPCode, something is wrong in your implementation.

<?php

require_once 'files/PHPMailer/PHPMailerAutoload.php';

$mail = new PHPMailer();                              // Passing `true` enables exceptions
try {
    //Server settings
    $mail->SMTPDebug = 0;                                 // Enable verbose debug output
    $mail->isSMTP();                                      // Set mailer to use SMTP
    $mail->Host = 'mysmtpserver';  // Specify main and backup SMTP servers
    $mail->SMTPAuth = true;                               // Enable SMTP authentication
    $mail->Username = 'email';           // SMTP username
    $mail->Password = 'password';                           // SMTP password
    $mail->SMTPSecure = 'tls';                              // or ssl
    $mail->Port = 587;                                    // TCP port to connect to
    
    //Recipients
    $mail->setFrom('xxxxx@xxx.com', 'Info');
    $mail->addAddress('xxxxxx@xxx.com', 'xxxxx');     // Add a recipient
    
    //Content
    $mail->isHTML(true);                                  // Set email format to HTML
    $mail->Subject = 'Here is the subject';
    $mail->Body    = 'This is the HTML message body <b>in bold!</b>';
    $mail->AltBody = 'This is the body in plain text for non-HTML mail clients';
    
    $mail->send();
    echo 'Message has been sent';
} catch (Exception $e) {
    echo 'Message could not be sent. Mailer Error: ', $mail->ErrorInfo;
}

I made my own PHPMailer php file and that is working fine. Using your stack it does not work. So there is really something wrong in your implementation. When using SMTP via your stack it does not work, I now found a way to use it via the mail() function but now it does not check for the success.

The $GET[ā€˜Success’] is not working when using mail() function, funny is that the commented code is the solution.

Not working: (if (isset($_GET['success'])){

    Is working once uncommented off course: //if(isset($_POST['submit'])){
1 Like

Then I can stop driving myself crazy … test wildly all email addresses and possibilities and it does not work.

I hope there will be an update soon.

I have now done exactly as ā€œjasperkokā€ and it works now … if it but as he writes still deficit there, this should please be fixed with an update.

I’m not a PHP expert or anything … that’s why the other stuff described above does not tell me anything.

I’ll send you a message @jasperkok to get more information on your setup and then can test for a fix for this situation - thanks

1 Like

I got response 16h ago from @yuzool and replied with more detail.

2 Likes