首页 企业管理 电子邮件代发
电子邮件代发

电子邮件代发

  • 280
  • 0
提供电子邮件的代发服务,禁止一切违法行为使用本服务,违者后果自负,与本作者无关!
按次付费
http[s]://api.liangmlk.cn?appid=2187&ak=*****
暂无
JSON
1 点/次
GET
280

GET请求参数:

参数名称 参数类型 必填 默认值 示例值 备注
to string true 邮件地址
content string true 邮件内容
from_to string true 发送人
topic string true 邮件主题

请求示例代码:

<?php

    header('content-type:text/html;charset=utf-8');
	$ch  = curl_init();
	$url = 'https://api.liangmlk.cn?ak=xxxx&appid=2187&to=xxxx&content=xxxx&from_to=xxxx&topic=xxxx';
	curl_setopt($ch,CURLOPT_URL,$url);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
    curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
    curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, FALSE);
	$res = curl_exec($ch);
	curl_close($ch);
	return json_decode($res,true);
                    

JSON返回示例 [仅供参考,请以实际返回为准]:

其它推荐RECOMMENDED DATA 更多