LR利用foxmail发邮件部分的脚本代码

 smtp1 = 0;
 smtp_logon_ex(&smtp1, "SmtpLogon",
  "URL=smtp://smtp.163.com",
  "CommonName=LoadRunner User",
  LAST);
 smtp_free_ex(&smtp1);
 smtp2 = 0;
 smtp_logon_ex(&smtp2, "SmtpLogon",
  "URL=smtp://smtp.163.com",
  " [email protected]",
  "LogonPass=abcdef", 密码
  "CommonName=LoadRunner User",
  LAST);
 smtp_send_mail_ex(&smtp2, "SendMail",
  " [email protected]",
  " [email protected]",
  "Subject=hi", 标题
  "ContentType=text/plain;",
  "charset=\"gb2312\"",
  MAILOPTIONS,
   "X-mailer: Foxmail 5.0 [cn]",
  MAILDATA,
   "MessageText=你好hi yuy\r\n", 内容
  LAST);
 smtp_logout_ex(&smtp2);
 smtp_free_ex(&smtp2);
 return 0;

你可能感兴趣的:(邮件,loadrunner,休闲,foxmail,脚本代码)