PHP線上發郵件代無需服務端軟體
PHP線上發郵件程式碼
為解決一些主機空間或伺服器上不帶發郵件sendmail程式 發一個自己使用的線上發郵件小程式,按自己要求修改index.html
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>PHP利用smtp類傳送郵件範例</title>
</head>
<body>
<form action="sendmail.php" method="post">
<p>收件人:<input type="text" name="toemail" /></p>
<p>標 題:<input type="text" name="title" /></p>
<p>內 容:<textarea name="content" cols="50" rows="5"></textarea></p>
<p><input type="submit" value="傳送" /></p>
</form>
</body>
</html>
sendmail.php
<?php
header("Content-type: text/html; charset=utf-8");
require_once "Smtp.class.php";
//******************** 配置資訊 ********************************
$smtpserver = "smtp.163.com";//SMTP伺服器
$smtpserverport =25;//SMTP伺服器埠
$smtpusermail = "";//SMTP伺服器的使用者郵箱
$smtpemailto = $_POST['toemail'];//傳送給誰
$smtpuser = "";//SMTP伺服器的使用者帳號,注:部分郵箱只需@前面的使用者名稱
$smtppass = "";//SMTP伺服器的授權碼
$mailtitle = $_POST['title'];//郵件主題
$mailcontent = "<h1>".$_POST['content']."</h1>";//郵件內容
$mailtype = "HTML";//郵件格式(HTML/TXT),TXT為文字郵件
//************************ 配置資訊 ****************************
$smtp = new Smtp($smtpserver,$smtpserverport,true,$smtpuser,$smtppass);//這裡面的一個true是表示使用身份驗證,否則不使用身份驗證.
$smtp->debug = false;//是否顯示傳送的除錯資訊
$state = $smtp->sendmail($smtpemailto, $smtpusermail, $mailtitle, $mailcontent, $mailtype);
echo "<div style='width:300px; margin:36px auto;'>";
if($state==""){
echo "對不起,郵件傳送失敗!請檢查郵箱填寫是否有誤。";
echo "<a href='index.html'>點此返回</a>";
exit();
}
echo "恭喜!郵件傳送成功!!";
echo "<a href='index.html'>點此返回</a>";
echo "</div>";
?>
Smtp.class.php
<?php
/**
* email smtp (support php7)
*
* Modified by: Reson 2017/06
* UPDATE:
* 1、change ereg to preg_match;change ereg_replace to preg_replace.
* 2、change var to public/private.
*
* More: http://www.daixiaorui.com
*
*/
class Smtp
{
/* Public Variables */
public $smtp_port;
public $time_out;
public $host_name;
public $log_file;
public $relay_host;
public $debug;
public $auth;
public $user;
public $pass;
/* Private Variables */
private $sock;
/* Constractor */
function __construct($relay_host = "", $smtp_port = 25,$auth = false,$user,$pass)
{
$this->debug = FALSE;
$this->smtp_port = $smtp_port;
$this->relay_host = $relay_host;
$this->time_out = 30; //is used in fsockopen()
$this->auth = $auth;//auth
$this->user = $user;
$this->pass = $pass;
$this->host_name = "localhost"; //is used in HELO command
$this->log_file = "";
$this->sock = FALSE;
}
/* Main Function */
function sendmail($to, $from, $subject = "", $body = "", $mailtype, $cc = "", $bcc = "", $additional_headers = "")
{
$mail_from = $this->get_address($this->strip_comment($from));
$body = preg_replace("/(^|(\r\n))(\.)/", "\1.\3", $body);
$header = "MIME-Version:1.0\r\n";
if($mailtype=="HTML"){
$header .= "Content-Type:text/html\r\n";
}
$header .= "To: ".$to."\r\n";
if ($cc != "") {
$header .= "Cc: ".$cc."\r\n";
}
$header .= "From: $from<".$from.">\r\n";
$header .= "Subject: ".$subject."\r\n";
$header .= $additional_headers;
$header .= "Date: ".date("r")."\r\n";
$header .= "X-Mailer:By Redhat (PHP/".phpversion().")\r\n";
list($msec, $sec) = explode(" ", microtime());
$header .= "Message-ID: <".date("YmdHis", $sec).".".($msec*1000000).".".$mail_from.">\r\n";
$TO = explode(",", $this->strip_comment($to));
if ($cc != "") {
$TO = array_merge($TO, explode(",", $this->strip_comment($cc)));
}
if ($bcc != "") {
$TO = array_merge($TO, explode(",", $this->strip_comment($bcc)));
}
$sent = TRUE;
foreach ($TO as $rcpt_to) {
$rcpt_to = $this->get_address($rcpt_to);
if (!$this->smtp_sockopen($rcpt_to)) {
$this->log_write("Error: Cannot send email to ".$rcpt_to."\n");
$sent = FALSE;
continue;
}
if ($this->smtp_send($this->host_name, $mail_from, $rcpt_to, $header, $body)) {
$this->log_write("E-mail has been sent to <".$rcpt_to.">\n");
} else {
$this->log_write("Error: Cannot send email to <".$rcpt_to.">\n");
$sent = FALSE;
}
fclose($this->sock);
$this->log_write("Disconnected from remote host\n");
}
return $sent;
}
/* Private Functions */
function smtp_send($helo, $from, $to, $header, $body = "")
{
if (!$this->smtp_putcmd("HELO", $helo)) {
return $this->smtp_error("sending HELO command");
}
//auth
if($this->auth){
if (!$this->smtp_putcmd("AUTH LOGIN", base64_encode($this->user))) {
return $this->smtp_error("sending HELO command");
}
if (!$this->smtp_putcmd("", base64_encode($this->pass))) {
return $this->smtp_error("sending HELO command");
}
}
if (!$this->smtp_putcmd("MAIL", "FROM:<".$from.">")) {
return $this->smtp_error("sending MAIL FROM command");
}
if (!$this->smtp_putcmd("RCPT", "TO:<".$to.">")) {
return $this->smtp_error("sending RCPT TO command");
}
if (!$this->smtp_putcmd("DATA")) {
return $this->smtp_error("sending DATA command");
}
if (!$this->smtp_message($header, $body)) {
return $this->smtp_error("sending message");
}
if (!$this->smtp_eom()) {
return $this->smtp_error("sending <CR><LF>.<CR><LF> [EOM]");
}
if (!$this->smtp_putcmd("QUIT")) {
return $this->smtp_error("sending QUIT command");
}
return TRUE;
}
function smtp_sockopen($address)
{
if ($this->relay_host == "") {
return $this->smtp_sockopen_mx($address);
} else {
return $this->smtp_sockopen_relay();
}
}
function smtp_sockopen_relay()
{
$this->log_write("Trying to ".$this->relay_host.":".$this->smtp_port."\n");
$this->sock = @fsockopen($this->relay_host, $this->smtp_port, $errno, $errstr, $this->time_out);
if (!($this->sock && $this->smtp_ok())) {
$this->log_write("Error: Cannot connenct to relay host ".$this->relay_host."\n");
$this->log_write("Error: ".$errstr." (".$errno.")\n");
return FALSE;
}
$this->log_write("Connected to relay host ".$this->relay_host."\n");
return TRUE;
}
function smtp_sockopen_mx($address)
{
$domain = preg_replace("/^[email protected]([^@]+)$/", "\1", $address);
if (!@getmxrr($domain, $MXHOSTS)) {
$this->log_write("Error: Cannot resolve MX \"".$domain."\"\n");
return FALSE;
}
//專注與php學習 http://www.daixiaorui.com 歡迎您的訪問
foreach ($MXHOSTS as $host) {
$this->log_write("Trying to ".$host.":".$this->smtp_port."\n");
$this->sock = @fsockopen($host, $this->smtp_port, $errno, $errstr, $this->time_out);
if (!($this->sock && $this->smtp_ok())) {
$this->log_write("Warning: Cannot connect to mx host ".$host."\n");
$this->log_write("Error: ".$errstr." (".$errno.")\n");
continue;
}
$this->log_write("Connected to mx host ".$host."\n");
return TRUE;
}
$this->log_write("Error: Cannot connect to any mx hosts (".implode(", ", $MXHOSTS).")\n");
return FALSE;
}
function smtp_message($header, $body)
{
fputs($this
相關推薦
PHP線上發郵件代無需服務端軟體
PHP線上發郵件程式碼
為解決一些主機空間或伺服器上不帶發郵件sendmail程式
發一個自己使用的線上發郵件小程式,按自己要求修改
index.html
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Trans
阿裏雲服務器不能發郵件,禁用25端口的解決辦法
utf not red view 成功 提示 password imap erro 前陣子剛剛買了個阿裏雲服務器,在做發送郵件功能時,發現本來在本地測試沒問題的功能,在服務器上連接超時。
後來發現是阿裏雲將25端口禁用了(“坑!當然也有其道理”),大概2016年9月後買
Linux 下PHP Version 7.0.1 mongodb服務端和擴充套件的安裝
再次主要介紹服務端的安裝步驟,客戶端擴充套件簡單介紹下就行,可以直接使用此連結的編譯安裝包,下載地址http://download.csdn.net/download/jzj_xhj/102662221:放置在 /opt/php-7.0.7/lib/php/extension
php 版本 微信支付 APP 服務端開發
我們通過 微信支付的文件知道 第一步 服務端需要呼叫統一下單介面生成預付單,其中主要的引數就是 prepay_id 這樣 app 通過 prepay_id 就可以發起支付請求了。
我們可以參考 微信支付的 官方SDK(就是個坑)
統一下單介面就是 呼叫函式
php中soap使用,SoapServer服務端編寫,SoapClient客戶端編寫
以前沒接觸過soap,最近要弄了,花了一天時間整理,學習了一下,轉載請註明http://blog.csdn.net/nanshan_hzq/article/details/52814622
一,首先要設定伺服器環境。修改php.ini得新增extension=php_so
使用php發郵件一(開啟郵箱服務qq郵箱為例)
1、進入你的QQ郵箱,進入賬戶介面
2、找到相應的服務,開啟服務,並獲取授權碼 這裡的意思是可以使用imap.qq.com作為郵件接收伺服器,smtp.qq.com作為郵件傳送伺服器。
以下摘自百度百科 POP3協議允許電子郵件客戶端下載伺服器上的郵件,但是在客戶端的
使用php開發簡單的線上直播服務端(一)-前期準備(writing...2016-12-29更新)
本次開發兩個版本,分別為使用swoole拓展和不使用swoole拓展。只是一個個人能力鍛鍊的娛樂小專案O(∩_∩)O~。
技術配置
Mac OS系統
PHP7.1
swoole拓展(非必需)
nginx-rtmp
mongodb
Video.j
安卓使用Socket發送中文,C語言服務端接收亂碼問題解決方式
article nbsp ons size ret con pre n+1 utf8
今天用安卓通過Socket發送數據到電腦上使用C語言寫的服務端,發送英文沒有問題,可當把數據改變成中文時,服務端接收到的數據確是亂碼。
突然想到。VS的預處理使用的
spring 發送郵件代碼示例(帶附件和不帶附件的)
cat subject exception type except 郵件 auto help utf
import javax.mail.MessagingException;
import javax.mail.internet.MimeMessage;
im
根據xlsx模板生成excel數據文件發送郵件代碼
order comment hssf emp value ade 新的 see util
package mail;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotF
【問底】夏俊:深入站點服務端技術(一)——站點並發的問題
而是 思路 臨時 系統負載 表現 json article 不能 情況
摘要:本文來自擁有十年IT從業經驗、擅長站點架構設計、Web前端技術以及Java企業級開發的夏俊,此文也是《關於大型站點技術演進的思考》系列文章的最新出爐內容。首發於CSDN,各位技術人員不
PHP中利用PHPMailer配合QQ郵箱實現發郵件
一定的 bst strong ddr 實驗室 ber 希望 域名 add 前言:
由於作業的需要,要實現給我們的網站用戶發送郵件,於是就有了這篇博客。以下的內容是我結合網上的例子加上自己的實踐的出來的。希望對大家有幫助。
PHPMailer的介紹:
優點:
可運行在任何平
HttpURLConnection 發送PUT請求 json請求體 與服務端接收
logs esp appid 請求 edi write webtest read tco
public void testHttp()
{
String result = "";
try
{
api-gateway實踐(8)新服務網關 - 測試發布(服務端API)
isp logs rest span com 點擊 功能 size json對象 一、網關引擎
網關引擎地址:http://10.110.20.191:8080/api-gateway-engine/
二、服務提供者
服務提供者地址:http://10.110.20.19
icinga2對特定服務設置專門發郵件策略
icinga2icinga2對特定服務設置專門發郵件策略(如mysql、web等):# vi /etc/icinga2/conf.d/timeperiods.conf (也可以新建個TimePeriod)object TimePeriod "9to5" { import "legacy-timeperiod
關於CA自我認證以及向其他服務端發送證書的實驗
ca自我認證一、CA證書的制作(CA的主機上) 1、查看是否安裝了openssl軟件 # rpm -qa openssl 2、生成自簽證書(在/etc/pki/CA目錄下完成 ) (1)生成私鑰 (2)生成自簽證書 //由於生成證書是需要填寫一些國家,省份等信息。這裏將這
解決PHP服務端返回json字符串有特殊字符的問題
解析 clas 要求 com 切換 trac bom break 必須 1. 問題描述
在調用PHP後臺接口發現後臺接口返回的json字符串Gson一直解析不通過:
List<Region> districts = null;
if (!Text
php發郵件:swiftmailer, php郵件庫——swiftmailer
郵件 cnblogs exit end 地址 text loader 多個 郵件服務器 php發郵件:swiftmailer, php郵件庫——swiftmailer
最近看到一個好的php郵件庫,與phpmailer作用一樣,但性能比phpmailer好,尤其是在處理附件
Mac下命令行發郵件【搭配php(shell_exec...)等腳本語言,輕松發郵件,告別各種依賴庫】
-1 mtp ima .cn 令行 輕量 -- 語言 郵件 用到的是msmtp,一個smtp客戶端,比sendmail,postfix更加輕量。用自己的QQ郵箱(163...)發郵件的話,很適合。
Mac下安裝很簡單,一句話:brew install msmtp
(九)springmvc之json的數據請求(客戶端發送json數據到服務端)
index.jsp null 字符串 n-2 func mda 客戶 請求 spring index.jsp
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncodi