Send Email Programmatically

@hereabdulla @magic-overflow many thanks of both of you,

for viewers :
here is method of sending emails,

def send_email(email_address):
	frappe.sendmail(recipients=email_address,
		subject="Subject of the email",
		message= "Content of the email"
4 Likes