How to send email from html?

2011-04-17 Thread LIU Liang
I want to realize the e-mail verification for the social network. But not clear about the code below: what does the '$' and the '#' mean? and the method 'submit()? {% trans "re-send verification e-mail" %} I want that after clicking the button 'Verify', it should send out an e-mail. However,

Re: How to send email from html?

2011-04-17 Thread Mengu
that is actually jquery code, mixed with a django template variable. $ is an alias for jquery which lets you do some nice things with it. you can also replace it with "jQuery('#send_..')". #send_{{ forloop.counter }} means the element with id "send_x". x there is whatever the current forloop.coun