Skip to content

Commit

Permalink
Merge pull request #10 from ramanaditya/develop
Browse files Browse the repository at this point in the history
AWS SES SMTP
  • Loading branch information
ramanaditya authored Oct 4, 2021
2 parents 040a43e + 51fee3c commit a5af747
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 0 additions & 2 deletions email_service/ses/aws_ses.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
from botocore.exceptions import ClientError

from email_service.utils.clean_data import CleanMailingList
from email_service.utils.constants import ATTACHMENT_FILE_TYPES
from email_service.utils.functions import read_file_in_binary
from email_service.utils.validators import Validation

Expand All @@ -33,7 +32,6 @@ def add_attachment(data: list) -> list:
single_file = single_file

file_name, extension = single_file.split(".")
file_type = ATTACHMENT_FILE_TYPES[extension]

binary_content = read_file_in_binary(single_file)

Expand Down
2 changes: 1 addition & 1 deletion email_service/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

import pytz

__version__ = "1.1.0"
__version__ = "1.2.0"

# Add datetime.now() for test PyPI to skip conflicts in file name
test_version = os.environ.get("TESTPYPI", default=False)
Expand Down

0 comments on commit a5af747

Please sign in to comment.