EmailSettings¶
-
class
aws_cdk.aws_cognito.
EmailSettings
(*, from_=None, reply_to=None)¶ Bases:
object
Email settings for the user pool.
- Parameters
from – The ‘from’ address on the emails received by the user. Default: noreply
reply_to (
Optional
[str
]) – The ‘replyTo’ address on the emails received by the user as defined by IETF RFC-5322. When set, most email clients recognize to change ‘to’ line to this address when a reply is drafted. Default: - Not set.
Attributes
-
from_
¶ The ‘from’ address on the emails received by the user.
- Default
noreply
- Verificationemail
.com
- Return type
Optional
[str
]
-
reply_to
¶ The ‘replyTo’ address on the emails received by the user as defined by IETF RFC-5322.
When set, most email clients recognize to change ‘to’ line to this address when a reply is drafted.
- Default
Not set.
- Return type
Optional
[str
]