Giving email account a name when sending emails with Django through Google Apps

You can actually use "Dont Reply <[email protected]>" as the email address you send from.

Try this in the shell of your django project to test if it also works with gapps:

>>> from django.core.mail import send_mail
>>> send_mail('subject', 'message', 'Dont Reply <[email protected]>', ['[email protected]'])