brynq-sdk-mandrill 1.1.0__tar.gz → 1.1.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.0
2
2
  Name: brynq_sdk_mandrill
3
- Version: 1.1.0
3
+ Version: 1.1.1
4
4
  Summary: Mandrill wrapper from BrynQ
5
5
  Home-page: UNKNOWN
6
6
  Author: BrynQ
@@ -27,7 +27,7 @@ class MailClient(BrynQ):
27
27
  else:
28
28
  raise ValueError('No credentials found for Mandrill. Either pass a BrynQ credential label or set the environment variables MANDRILL_TOKEN, MANDRILL_EMAIL_FROM and MANDRILL_NAME_FROM')
29
29
 
30
- def send_mail(self, email_to: list, subject: str, language='NL', content: Optional[str] = None, attachment: Optional[BinaryIO | List[BinaryIO]] = None, cc: Optional[List, str] = None) -> List[dict]:
30
+ def send_mail(self, email_to: list, subject: str, language='NL', content: Optional[str] = None, attachment: Optional[BinaryIO | List[BinaryIO]] = None, cc: Optional[List | str] = None) -> List[dict]:
31
31
  """
32
32
  Send a mail with the BrynQ layout and using mandrill
33
33
  :param email_to: a list with name and mailadress to who the mail must be send
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.0
2
2
  Name: brynq-sdk-mandrill
3
- Version: 1.1.0
3
+ Version: 1.1.1
4
4
  Summary: Mandrill wrapper from BrynQ
5
5
  Home-page: UNKNOWN
6
6
  Author: BrynQ
@@ -3,7 +3,7 @@ from setuptools import setup
3
3
 
4
4
  setup(
5
5
  name='brynq_sdk_mandrill',
6
- version='1.1.0',
6
+ version='1.1.1',
7
7
  description='Mandrill wrapper from BrynQ',
8
8
  long_description='Mandrill wrapper from BrynQ',
9
9
  author='BrynQ',