forked from getmoto/moto
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
SESV2 send_email with HTML body (getmoto#6927)
- Loading branch information
1 parent
3e16835
commit 1d4b3b5
Showing
2 changed files
with
41 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
from botocore.exceptions import ClientError | ||
import pytest | ||
from moto import mock_sesv2, mock_ses, settings | ||
from moto.ses.models import ses_backends, RawMessage | ||
from moto.ses.models import ses_backends, RawMessage, Message | ||
from tests import DEFAULT_ACCOUNT_ID | ||
from ..test_ses.test_ses_boto3 import get_raw_email | ||
|
||
|
@@ -48,11 +48,44 @@ def test_send_email(ses_v1): # pylint: disable=redefined-outer-name | |
|
||
if not settings.TEST_SERVER_MODE: | ||
backend = ses_backends[DEFAULT_ACCOUNT_ID]["us-east-1"] | ||
msg: RawMessage = backend.sent_messages[0] | ||
msg: Message = backend.sent_messages[0] | ||
assert msg.subject == "test subject" | ||
assert msg.body == "test body" | ||
|
||
|
||
@mock_sesv2 | ||
def test_send_html_email(ses_v1): # pylint: disable=redefined-outer-name | ||
# Setup | ||
conn = boto3.client("sesv2", region_name="us-east-1") | ||
ses_v1.verify_domain_identity(Domain="example.com") | ||
kwargs = dict( | ||
FromEmailAddress="[email protected]", | ||
Destination={ | ||
"ToAddresses": ["[email protected]"], | ||
}, | ||
Content={ | ||
"Simple": { | ||
"Subject": {"Data": "test subject"}, | ||
"Body": {"Html": {"Data": "<h1>Test HTML</h1>"}}, | ||
}, | ||
}, | ||
) | ||
|
||
# Execute | ||
conn.send_email(**kwargs) | ||
|
||
# Verify | ||
send_quota = ses_v1.get_send_quota() | ||
sent_count = int(send_quota["SentLast24Hours"]) | ||
assert sent_count == 1 | ||
|
||
if not settings.TEST_SERVER_MODE: | ||
backend = ses_backends[DEFAULT_ACCOUNT_ID]["us-east-1"] | ||
msg: Message = backend.sent_messages[0] | ||
assert msg.subject == "test subject" | ||
assert msg.body == "<h1>Test HTML</h1>" | ||
|
||
|
||
@mock_sesv2 | ||
def test_send_raw_email(ses_v1): # pylint: disable=redefined-outer-name | ||
# Setup | ||
|