Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Development #45

Closed
wants to merge 7 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions dbmail/migrations/0009_auto_20160107_0459.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# -*- coding: utf-8 -*-
from __future__ import unicode_literals

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('dbmail', '0008_auto_20151007_1918'),
]

operations = [
migrations.AlterField(
model_name='mailtemplate',
name='subject',
field=models.TextField(verbose_name='Subject'),
),
]
2 changes: 1 addition & 1 deletion dbmail/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ class Meta:
@python_2_unicode_compatible
class MailTemplate(models.Model):
name = models.CharField(_('Template name'), max_length=100, db_index=True)
subject = models.CharField(_('Subject'), max_length=100)
subject = models.TextField(_('Subject'))
from_email = models.ForeignKey(
MailFromEmail, null=True, blank=True,
verbose_name=_('Message from'), default=DEFAULT_FROM_EMAIL,
Expand Down