How to BCC all emails in Amazon WorkMail

0

Within Amazon WorkMail, under the organization settings, How do you setup rule to BCC all inbound/outbound emails? I have tried using a Lambda function and added an extra setting called "recipients", but that didn't work.

preguntada hace 5 meses193 visualizaciones
2 Respuestas
0

Hi,

How are you adding the recipient to the email? The correct way to do this would be using a synchronous lambda where you add a recipient by returning something like this: (From Docs)

The following example demonstrates the structure of a synchronous Run Lambda response for adding recipients to the email message. This does not update the To or CC fields of the email message.

{
    "actions": [
      {
        "action": { 
          "type": "DEFAULT" 
        },
        "recipients": [
          "new-recipient@example.com"
         ]
      },
      {
        "action": { 
          "type": "DEFAULT" 
        },
        "allRecipients": true
      }
    ]
}

Kind regards, Robin

AWS
EXPERTO
respondido hace 5 meses
profile picture
EXPERTO
revisado hace 5 meses
0

Hi Robin, I finally got it to work. I created my Lambda function with the following code and created an Organization Inbound rule calling Synchronous Lambda function. This also works for the same with Outbound rule. Code is slightly different for outbound.

try:

    # workmail = boto3.client('workmailmessageflow', region_name='us-west-2')
    mailBcc = ['bcc@email.com']
    recipients = event['envelope']['recipients']
    
    to_addr = 'from@email.com'
    
    for item in recipients:
        if to_addr in item.values():
            
            return {
                'actions': [
                {
                    'action': { 'type': 'DEFAULT' },
                    'recipients': mailBcc
                },
                {
                    'action': { 'type': 'DEFAULT' },
                    'allRecipients': True
                }
            ]}        
    
except Exception as e:
    print(e)
    raise e

return {
    'actions': [
    {
        'allRecipients': True,
        'action': { 'type': 'DEFAULT' }
respondido hace 5 meses

No has iniciado sesión. Iniciar sesión para publicar una respuesta.

Una buena respuesta responde claramente a la pregunta, proporciona comentarios constructivos y fomenta el crecimiento profesional en la persona que hace la pregunta.

Pautas para responder preguntas