Showing posts with label Django. Show all posts
Showing posts with label Django. Show all posts

Wednesday, November 24, 2010

Article Published: Developing with Flex 4, Django, Python, and PyAMF


Recently, Adobe published my article on their ADC site. The article is about Flex 4 and Django. I don't think there are enough Django/Python topics out there, especially for Flex/Flash developers. I hope you guys enjoy the read. If you have any questions please let me know.

Click here to read more

Thursday, August 6, 2009

Web site Launched: rebeccaminkoffstore.com

I'm proud to announce my latest project release, rebeccaminkoffstore.com. This site was developed with Django, jQuery and pure CSS. The site is feature crazy: Gift Certificates, Product Managing, Customer Order Tracking, Customer Purchase History. Please go to the site and check it out.














Tuesday, November 11, 2008

Django Errors: SMTP AUTH and SMTPAuthenticationError

FYI, if you have issues with Django's send_mail with a gmail account, in your settings.py use the following template.

# EMAIL SETTINGS
EMAIL_HOST = "smtp.gmail.com"
EMAIL_PORT = "587"
EMAIL_HOST_USER = "your_account_user@gmail.com"
EMAIL_HOST_PASSWORD = "password"
# Controls whether a secure connection is used.
EMAIL_USE_TLS = True


If you are getting SMTPAuthenticationError with a non gmail account:

# EMAIL SETTINGS
EMAIL_HOST = "mail.whatever-domain.com"
EMAIL_PORT = "25"
EMAIL_HOST_USER = "username"
EMAIL_HOST_PASSWORD = "password"
# Controls whether a secure connection is used.
EMAIL_USE_TLS = True