Solution is fixed here:
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
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.
-
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.
-
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
-
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.
Great comments @Adri12
Always open to ideas and feedback has helped me shape all Stacks etc - itās a win-win approach!
So thanks for noticing and for taking the time to write in and will definitely consider these for the next round of updates
Hi
āEmail notifications to site admin and booker when a reservation is placedā donĀ“t workā¦how to fix this?
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.
Got your DM message @HotDrive and replied with some ideas on how to make it work
- 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'])){
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
I got response 16h ago from @yuzool and replied with more detail.