prefect_email.credentials
Credential classes used to perform authenticated interactions with email services
EmailServerCredentials
Bases: Block
Block used to manage generic email server authentication. It is recommended you use a Google App Password if you use Gmail.
Attributes:
Name | Type | Description |
---|---|---|
username |
Optional[str]
|
The username to use for authentication to the server. Unnecessary if SMTP login is not required. |
password |
SecretStr
|
The password to use for authentication to the server. Unnecessary if SMTP login is not required. |
smtp_server |
Union[SMTPServer, str]
|
Either the hostname of the SMTP server, or one of the keys from the built-in SMTPServer Enum members, like "gmail". |
smtp_type |
Union[SMTPType, str]
|
Either "SSL", "STARTTLS", or "INSECURE". |
smtp_port |
Optional[int]
|
If provided, overrides the smtp_type's default port number. |
verify |
Optional[bool]
|
If |
Example
Load stored email server credentials:
from prefect_email import EmailServerCredentials
email_credentials_block = EmailServerCredentials.load("BLOCK_NAME")
Source code in prefect_email/credentials.py
72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 |
|
get_server()
Gets an authenticated SMTP server.
Returns:
Name | Type | Description |
---|---|---|
SMTP |
SMTP
|
An authenticated SMTP server. |
Example
Gets a GMail SMTP server through defaults.
from prefect import flow
from prefect_email import EmailServerCredentials
@flow
def example_get_server_flow():
email_server_credentials = EmailServerCredentials(
username="username@gmail.com",
password="password",
)
server = email_server_credentials.get_server()
return server
example_get_server_flow()
Source code in prefect_email/credentials.py
159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 |
|
SMTPServer
Bases: Enum
Server used to send email.
Source code in prefect_email/credentials.py
27 28 29 30 31 32 33 34 35 36 37 38 |
|
SMTPType
Bases: Enum
Protocols used to secure email transmissions.
Source code in prefect_email/credentials.py
17 18 19 20 21 22 23 24 |
|