Fixed Syntax errors
diff --git a/erpnext/crm/doctype/appointment/appointment.py b/erpnext/crm/doctype/appointment/appointment.py
index 1ca706c..5d8a30f 100644
--- a/erpnext/crm/doctype/appointment/appointment.py
+++ b/erpnext/crm/doctype/appointment/appointment.py
@@ -40,7 +40,9 @@
 		else:
 			# Send email to confirm
 			verify_url = ''.join([frappe.utils.get_url(),'/book-appointment/verify?email=',self.email,"&appoitnment=",self.name])
-			frappe.sendmail(recipients=[self.email],message=verify_url,self.email,"&appoitnment=",self.name),subject="")
+			frappe.sendmail(recipients=[self.email], 
+							message=verify_url,
+							subject="")
 			frappe.msgprint("Please check your email to confirm the appointment")
 
 	def set_verified(self,email):