Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add the location and notes fields to the appointment email notifications (if a value was provided). #1341

Closed
arladmin opened this issue Feb 17, 2023 · 2 comments
Assignees
Labels
enhancement New feature or request
Milestone

Comments

@arladmin
Copy link

arladmin commented Feb 17, 2023

When booking an appointment, i often add data to the Location and the Notes fields, e.g. to include the Google Meet link.

But, in the email sent to the Provider and the Customer this data is never included!

@alextselegidis alextselegidis changed the title Email does not include all the data Add the location and notes fields to the appointment email notifications (if present). Feb 21, 2023
@alextselegidis alextselegidis changed the title Add the location and notes fields to the appointment email notifications (if present). Add the location and notes fields to the appointment email notifications (if a value was provided). Feb 21, 2023
@alextselegidis alextselegidis self-assigned this Feb 21, 2023
@alextselegidis alextselegidis added the enhancement New feature or request label Feb 21, 2023
@alextselegidis alextselegidis added this to the v1.5.0 milestone Feb 21, 2023
@alextselegidis
Copy link
Owner

Pushed on develop

Alex Tselegidis, Easy!Appointments Creator
Need a customization? Get a free quote!

alextselegidis added a commit that referenced this issue Feb 21, 2023
@antsfiles
Copy link

I would also add address, vity and zipcode to the location when booked:

booking.php:

            if (empty($appointment['location']) && !empty($service['location'])) {
                $appointment['location'] = $service['location'];
            }
            // if not location: use the full address given when book
            if (empty($appointment['location'])) {
                $appointment['location'] = $customer['address'] . ' ' . $customer['zip_code'] . ' ' . $customer['city'];
            }

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

3 participants