Mostrando postagens com marcador html. Mostrar todas as postagens
Mostrando postagens com marcador html. Mostrar todas as postagens

5 de jul. de 2011

como redirecionar uma pagina ( html )

entre as tags <head>..</head> inserir o seguinte comando:

<META HTTP-EQUIV="Refresh" CONTENT="segundos ; URL= pagina.html">

onde..

segundos, se refere ao tempo em segundos para a outra página seja chamada.

Ex.: 3 segundos.

16 de mar. de 2011

como enviar email smtp html ( python )

#!/usr/bin/python

import smtplib

message = """From: From Person <from@fromdomain.com>
To: To Person <to@todomain.com>
MIME-Version: 1.0
Content-type: text/html
Subject: SMTP HTML e-mail test

This is an e-mail message to be sent in HTML format

<b>This is HTML message.</b>
<h1>This is headline.</h1>
"""

try:
   smtpObj = smtplib.SMTP('localhost')
   smtpObj.sendmail(sender, receivers, message)        
   print "Successfully sent email"
except SMTPException:
   print "Error: unable to send email"