51Testing软件测试论坛

标题: smtp的脚本例子 [打印本页]

作者: tacy_lee    时间: 2005-4-30 10:32
标题: smtp的脚本例子
smtp的脚本例子,录制的时候最好选择用outlook express这种标准工具

Action()
{

        smtp1 = 0;
        smtp_logon_ex(&smtp1, "SmtpLogon",
                "URL=smtp://smtp.163.com",
                "LogonUser=licl",
                "LogonPass=5161228",
                "CommonName=LoadRunner User",
                LAST);

        smtp_send_mail_ex(&smtp1, "SendMail",
                "To=user@gmail.com",
                "Cc=user@163.com",
                "From=test@163.com",
                "Subject=smtp test mail",
                "ContentType=text/plain;",
                "charset=\"Windows-1252\"",
                MAILOPTIONS,
                        "X-Priority: 3",
                        "X-MSMail-Priority: Normal",
                        "X-Mailer: Microsoft Outlook Express 6.00.2800.1437",
                        "X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1441",
                MAILDATA,
                        "MessageText=SGksTWFu\r\n",
                LAST);

        smtp_logout_ex(&smtp1);

        smtp_free_ex(&smtp1);

        return 0;
}




欢迎光临 51Testing软件测试论坛 (http://bbs.51testing.com/) Powered by Discuz! X3.2