Serviceminder allows a user to capture a photo of an appointment in the mobile application and then attach it to an email. Note that SM may capture three types of photographs: Contact, Proposal, and Appointment. We are discussing the Appointment photo here.
Be sure to set the app picture quality to low in Control Panel>General. In our business, high quality is not needed, and the uploads will take too long.
In the Service Minder Mobile Application
When using the mobile application in an active appointment, use the icon at the bottom to take a photo of the job site and add a note.
In an Email Template
In the CODE editing mode of an Appointment email, paste in this code, which will display a small photo from the appointment and its note, if present:
{% for item in model.appointment_pictures -%} <img src="{{item.service_image_url}}" class="img-responsive fr-fic fr-dii" style="max-width:200px;">
<br>{{item.notes}}
<div>{% endfor -%}