hi,
how can i get the successfully send message for email sending without
form?

def einladen():
    if auth.is_logged_in():
        email_empfaenger=db(db.projectmember.id==request.args
(0)).select()[0]
        empfaengermail=email_empfaenger.memberemail
        subject='Einladung als Projektteilnehmer von 2busy'
        email_user(sender='[email protected]',\
                   empfaenger=empfaengermail,\
                   message='Zum Anmelden bitte auf folgenden Link
klicken: http://www.2busy.de/projectplace',\
                   subject=subject)
        response.flash='Einladung wurde erfolgreich versendet'
        redirect(URL(r=request,c='menu',f='projectmember'))
    redirect(URL(r=request,c='default/user',f='login'))

thanks
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"web2py Web Framework" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/web2py?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to