AWS SES: How to use CSS properly

I’m new to HTML and CSS. I want to send email (with send_templated_email function) using AWS SES. Here is a very simplified html example (I uploaded the css file to the Google Drive): <!DOCTYPE html> <html> <head> <title>HTML Pandas Dataframe with CSS</title> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width"> <link rel="stylesheet" type="text/css" href="https://drive.google.com/uc?export=view&id=1WXiOVD4Dse4sAyyhYmtGYFXXu5p7U1GO&quot; /> <title></title> </head> <body>… Read More AWS SES: How to use CSS properly

AWS SES – Listing email identities with AWS Lambda

I’m sending emails to verified identities in AWS SES with ASW Lambda without problems. Now I’m just trying to list verified identities and getting no response. Here is my code: import boto3 from botocore.exceptions import ClientError def list_identities(): ses = boto3.client(‘ses’) response = ses.list_identities( IdentityType = ‘EmailAddress’, MaxItems=10 ) def lambda_handler(event, context): # TODO implement… Read More AWS SES – Listing email identities with AWS Lambda