You've mangled the YAML so it definitely won't work with what you've shown.
You'll need something like this:
- name: 'MoniDashboard'
email_configs:
- send_resolved: true
to: 'vinoth.sundaram@domain1,PrashantKumar.Singh1@domain2'
headers:
Subject: "{{ .CommonAnnotations.summary }}"
To: 'vinoth.sundaram@domain1'
Cc: 'PrashantKumar.Singh1@domain2'
require_tls: no
The important thing is that you need the 'to' value to be a comma-separated list of recipient addresses. See:
If it still doesn't work how you want, then you need to be more specific about your problem than "this is not working". For example:
- If the message isn't delivered to both receipients, you'll need to look at the log output of alertmanager and the logs from your E-mail relay (SMTP host)
- If the message is delivered to both receipients, but the "To" and "Cc" headers don't appear in the way that you want, then you'll need to show the actual message headers that you receive, and explain how they differ from what you expected.