自動寄信
再也不是難事

免費、即時、安全的Gmail自動寄信系統

2024 . 5 . 1

AES-GET使用說明

此版本是GET的加密版本,額外添加Auth-Api及AES進行加解密,安全性更高。

PHP觸發函式:

file_get_contents(網址+GET參數+api參數)
2024 . 5 . 1

AES-POST使用說明

此版本是POST的加密版本,額外添加Auth-Api及AES進行加解密,安全性更高。

PHP觸發函式:

$postData = http_build_query(array( 'username' => $username, 'email' => $email, // 其他欄位... ));

// 傳遞 POST 資料給 send-aes-post.php
$options = array( 'http' => array( 'method' => 'POST', 'header' => 'Content-type: application/x-www-form-urlencoded', 'content' => $postData ) );

$context = stream_context_create($options);
$result = file_get_contents('http://mail.wrlcc.synology.me/send-aes-post.php', false, $context);