*** Settings ***
Library           ../CodeLibWrapper/CodeLibWrapper.py

*** Keywords ***
KW_Utils_SendPlainMail
    [Arguments]    ${FromAddress}    ${Subject}    ${Content}    @{ToAddressList}

KW_Utils_SendHTMLMail

KW_Utils_SendHTMLMail_With_AttamentFile

KW_Utils_GenerateRandomString
    [Arguments]    ${RandomStringLength}
    [Documentation]    Generate random string.
    ${returnstring}    Utils Generate Random String    ${RandomStringLength}

KW_Log_To_Current_Console
    [Arguments]    ${TO_LOG}
    Log To Console    \n\n${TO_LOG}
