<%@ Language=VBScript%> <% mes = "" IsSuccess = false sTo = "padmavedi@rediffmail.com" sFrom = Trim(Request.Form("txtFrom")) sSubject = Trim(Request.Form("txtSubject")) sMailServer = "127.0.0.1" sBody = Trim(Request.Form("txtBody")) if Request("__action")="TestEMail" then TestEMail() end if Sub TestEMail() Set objMail = Server.CreateObject("CDO.Message") Set objConf = Server.CreateObject("CDO.Configuration") Set objFields = objConf.Fields With objFields .Item("http://schemas.microsoft.com/cdo/configuration/sendusing") = 2 .Item("http://schemas.microsoft.com/cdo/configuration/smtpserver") = sMailServer .Item("http://schemas.microsoft.com/cdo/configuration/smtpconnectiontimeout") = 10 .Item("http://schemas.microsoft.com/cdo/configuration/smtpserverport") = 25 .Update End With With objMail Set .Configuration = objConf .From = sFrom .To = sTo .Subject = sSubject .TextBody = sBody End With Err.Clear on error resume next objMail.Send if len(Err.Description) = 0 then mes = " Message sent to " + sTo mes = mes + " Thank you for sharing your experience!" IsSuccess = true else mes = " " + Err.Description + "Sorry for the inconvinience. Call us at the above number!" end if Set objFields = Nothing Set objConf = Nothing Set objMail = Nothing End sub Sub Alert(html) if IsSuccess then Response.Write "
" & html & "
" else Response.Write "
" & html & "
" end if End Sub %> Compassionate Living - Working for an inclusive world

Founder & President

Padmavati Dwivedi

Second Floor, N-39, GK - 1

New Delhi - 110048

9818746828

Act of Love and Kindness

Love, Courage, Compassion, humility, caring, integrity..... are often seen in a splash in our lives. These spontaneous acts by people give a glimpse of deep seated values. We want to celebrate and spread awareness so that we and our future generations uphold the true sense of what being a Human really means.

Please share your stories, they may be just little acts that you must have come across in your day to day activities.

Aman Anand a young girl from Amritsar living at Kailash Colony makes sure she spreads some joy on her birthday by celebrating with children having no families. This birthday she brought smiles to the HIV positive children at Naaz foundation.

Jagmohan Bagai, senior citizen found a baby squirrel in front of his Vasant Vihar home. He fed it some nuts, baby ate that day but not on the next. He anxiously called up animal shelter and carried it cosily in the top Kurta pocket all the way on his scooter. This timely act saved the life of the squirrel.

Rajinee Diddee, long time resident of N Block, GK-1 has been volunteering last two years at DCWA Zumrudpur.It brings her a sense of satisfaction to utilize her retirement life for giving back to the society.

If you want to add your stories of love and kindness, Please submit a brief about the act. Do not forget to include write your name,contact details. Incase of error submitting the form, Call us at 9818746828 or email us at padmavedi@rediffmail.com

<% if len(mes) > 0 then Alert(mes) end if %>