SystemMailParametersGetRequest22
Bases: OCIRequest
Request to get the list of Mail system parameters. The response is either SystemMailParametersGetResponse22 or ErrorResponse.
Attributes:Source code in
src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to SystemMailParametersGetListRequest22. Contains a list of system Mail parameters.
Attributes:
primary_server_net_address (Optional[str]):
secondary_server_net_address (Optional[str]):
default_from_address (str):
default_subject (Optional[str]):
support_dnssrv_for_mail_server_access (bool):
secure_mode (str):
port (Optional[int]):
Source code in src/mercury_ocip_fast/commands/commands.py
145349 145350 145351 145352 145353 145354 145355 145356 145357 145358 145359 145360 145361 145362 145363 145364 145365 145366 145367 145368 145369 145370 145371 145372 145373 145374 145375 145376 145377 145378 145379 145380 145381 145382 145383 145384 145385 145386 145387 145388 145389 145390 145391 145392 | |
Example Usage
from mercury_ocip_fast.client import Client
from mercury_ocip_fast.commands import SystemMailParametersGetRequest22
client = Client()
command = SystemMailParametersGetRequest22()
response = client.command(command)
print(response)