Humm. I just create the message this way: message = 'Serie:\t\t' + str(type) + str(series) + \ '\t\t\tUbicación:\t\t\t' + place + '\n' + \ 'Date&Time:\t' + date
and send it with: message = header + message server = smtplib.SMTP('localhost') server.sendmail('[EMAIL PROTECTED]', email, message) server.quit() -- http://mail.python.org/mailman/listinfo/python-list