当前位置: 首页>>代码示例>>PHP>>正文


PHP SMTP::smtp_mail方法代码示例

本文整理汇总了PHP中SMTP::smtp_mail方法的典型用法代码示例。如果您正苦于以下问题:PHP SMTP::smtp_mail方法的具体用法?PHP SMTP::smtp_mail怎么用?PHP SMTP::smtp_mail使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在SMTP的用法示例。


在下文中一共展示了SMTP::smtp_mail方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: SMTP

    // We check we have uploaded the file
    if ($up && $no_empty_champs) {
        // We include the SMTP class
        include './Class.SMTP.php';
        // We define the parametres of the SMTP connection
        $smtp = new SMTP($smtp_serveur, $smtp_login, $smtp_passe, 25, $smtp_domain);
        // We int the sender
        $smtp->set_from($_POST['name'], $_POST['email']);
        if ($file_up) {
            // Attach file
            $smtp->add_file($file_up);
        }
        // We define the Content type ( Value can be: html (for html), txt (for text), txt/html (for text and html) )
        $smtp->ContentType = 'txt';
        // We send the mail
        $smtp->smtp_mail($mail_to, $_POST['sujet'], $_POST['msg']);
        // We check that the mail as been send
        if (!$smtp->erreur) {
            echo '<div style="text-align:center; color:#008000;">Your mail as been send.</div>', "\r\n";
            if ($file_up) {
                // Delete tempory file
                unlink($file_up);
            }
        } else {
            // Print error(s)
            echo $smtp->erreur;
        }
    }
}
?>
开发者ID:D3Cnet,项目名称:cuisine,代码行数:30,代码来源:Exemple_with_a_file.php

示例2: SMTP

* Web site :
*		http://www.some-ideas.net/
*
*******************************************************************************/
include './Class.SMTP.php';
// If the SMTP server requiere authentification
// $smtp = new SMTP('smtp.server.com', 'login', 'pass', 'port', 'domain name', 'Debug; 0 desactivate');
// SMTP without authentification
// $smtp = new SMTP('smtp.server.com', '', '', 25, 'domain name', 'Debug; 0 desactivate');
$smtp = new SMTP('smtp.server.com', 'login', 'pass', 25, 'immortalpc.info', 0);
// From
$smtp->set_from('Immortal-PC', 'me@serveur.com');
// To
// Use coma to separate e-mail -> toto@email.com,titi@email.com
//$smtp->Bcc = 'toyou@serveur.com';// For hidden copy
//$smtp->Cc = 'toyou@serveur.com';// For normal copy
// Priority : 1 Urgent, 3 Normal, 6 Slow
$smtp->Priority = 3;
// Content type
$smtp->ContentType = 'text/txt';
// Content type (plain text, html...)
// Reception confirmation
$smtp->Confimation_reception = '';
// Email where wil be send the confirmation
//smtp_mail('toyou@server.com', 'subject', 'message', 'header')
if ($smtp->smtp_mail('toyou@server.com', 'subject', 'message')) {
    echo '<div style="text-align:center; color:#008000;">The email is sended</div>', "\r\n";
} else {
    // Display error
    echo $smtp->erreur;
}
开发者ID:D3Cnet,项目名称:cuisine,代码行数:31,代码来源:Send+a+complex+email.php

示例3: SMTP

<?php

/*******************************************************************************
*
* Nom de la source :
*       Class SMTP
* Nom du fichier par défaut :
*       Version envoie simple.php
* Auteur :
*       Nuel Guillaume alias Immortal-PC
* Site Web :
*       http://immortal-pc.info/
*
*******************************************************************************/
include './Class.SMTP.php';
// Remplissez le champs login et pass si vous avez besoin de vous identifié
// SMTP('smtp.serveur.fr', 'login', 'pass');
// SMTP sans authentification
// $smtp = new SMTP('smtp.serveur.fr');
$smtp = new SMTP('smtp.serveur.fr', 'login', 'pass');
$smtp->set_from('Immortal-PC', 'me@serveur.com');
$smtp->smtp_mail('to@you.com', 'sujet', 'message');
// Envoie du mail
if (!$smtp->erreur) {
    echo '<div style="text-align:center; color:#008000;">Votre mail a bien été envoyé.</div>', "\r\n";
} else {
    // Affichage des erreurs
    echo $smtp->erreur;
}
开发者ID:D3Cnet,项目名称:cuisine,代码行数:29,代码来源:Version+envoie+simple.php

示例4: array

if (!$smtp->Connect_SMTP()) {
    echo $smtp->erreur, 'Impossible d&#39; envoyer le mail !!!<br />' . "\r\n";
    exit;
}
// A Qui
// espacez les e-mail avec des virgules -> toto@email.com,titi@email.com
//$smtp->Bcc = 'toyou@serveur.com';// Pour une copie cachée
//$smtp->Cc = 'toyou@serveur.com';// Pour copie simple
// Priorité : 1 Urgent, 3 Normal, 6 Lent
$smtp->Priority = 3;
// Encodage
$smtp->ContentType = 'text/txt';
//Contenu du mail (texte, html...)
// Confirmation de reception
$smtp->Confimation_reception = '';
// Entrez l' adresse où sera renvoyé la confirmation
// Liste des destinataires
$dest = array('adresse_1_@server.com', 'adresse_2_@server.com', 'adresse_3_@server.com', 'adresse_4_@server.com', 'adresse_5_@server.com', 'adresse_6_@server.com', 'adresse_7_@server.com', 'adresse_8_@server.com');
for ($i = 0; $i < count($dest); $i++) {
    //smtp_mail('toyou@serveur.com', 'sujet', 'message', 'entête')
    if ($smtp->smtp_mail($dest[$i], 'sujet', 'message')) {
        echo '<div style="text-align:center; color:#008000;">Votre mail a bien été envoyé &agrave; <span style="font-weight:bolder;">', $dest[$i], '</span>.</div>', "\r\n";
    } else {
        // Affichage des erreurs
        echo $smtp->erreur;
    }
}
// On ferme la connection
if ($smtp) {
    $smtp->Deconnection_SMTP();
}
开发者ID:D3Cnet,项目名称:cuisine,代码行数:31,代码来源:Version+envoie+à+de+multiples+adresses+e-mails+.complex.php

示例5: SMTP

include './Class.SMTP.php';
$smtp = new SMTP('smtp.serveur.fr', 'login', 'pass', 25, 'immortal-pc.info');
$smtp2 = new SMTP('smtp.serveur_2.fr', 'login', 'pass', 25, 'immortal-pc.info');
$smtp->set_from('Immortal-PC', 'me@serveur.com', 'Site web Immortal-PC');
$smtp2->set_from('Immortal-PC', 'me@serveur.com', 'Site web Immortal-PC');
// Ajout des fichiers
$smtp->add_file('./Fichier_test.gif');
$smtp->add_file('./Fichier_test.txt');
$smtp2->add_file('./Fichier_test.gif');
$smtp2->add_file('./Fichier_test.txt');
$To = 'toyou@serveur.com';
// A QUI
$Sujet = 'Sujet';
// Sujet
$msg = 'Votre message ici' . "\r\n" . 'ça marche !!';
$smtp->smtp_mail($To, $Sujet, $msg);
// Envoie du mail ( Serveur 1 )
$smtp2->smtp_mail($To, $Sujet, $msg);
// Envoie du mail ( Serveur 2 )
if (!$smtp->erreur) {
    echo '<div style="text-align:center; color:#008000;">Votre mail a bien été envoyé. (Serveur 1)</div>', "\r\n";
} else {
    // Affichage des erreurs
    echo '<div style="color:#FF0000;">Serveur 1 : ', $smtp->erreur, '</div>', "\r\n", '<br />', "\r\n";
}
if (!$smtp2->erreur) {
    echo '<div style="text-align:center; color:#008000;">Votre mail a bien été envoyé. (Serveur 2)</div>', "\r\n";
} else {
    // Affichage des erreurs
    echo '<div style="color:#FF0000;">Serveur 2 : ', $smtp2->erreur, '</div>', "\r\n", '<br />', "\r\n";
}
开发者ID:D3Cnet,项目名称:cuisine,代码行数:31,代码来源:Version+envoie+complex+avec+une+pièce+jointe.php

示例6: SMTP

* Site Web :
*       http://immortal-pc.info/
*
*******************************************************************************/
include './Class.SMTP.php';
// Remplissez le champs login et pass si vous avez besoin de vous identifié
// SMTP('smtp.serveur.fr', 'login', 'pass', 'port', 'nom de domaine', 'Debug; 0 désactivé, 1 activé');
// SMTP sans authentification
// $smtp = new SMTP('smtp.serveur.fr', '', '', 25, 'nom de domaine', 'Debug; 0 désactivé, 1 activé');
$smtp = new SMTP('smtp.serveur.fr', 'login', 'mot de passe', 25, 'immortalpc.info', 0);
// De Qui
$smtp->set_from('Immortal-PC', 'me@serveur.com');
// A Qui
// espacez les e-mail avec des virgules -> toto@email.com,titi@email.com
//$smtp->Bcc = 'toyou@serveur.com';// Pour une copie cachée
//$smtp->Cc = 'toyou@serveur.com';// Pour copie simple
// Priorité : 1 Urgent, 3 Normal, 6 Lent
$smtp->Priority = 3;
// Encodage
$smtp->ContentType = 'text/txt';
//Contenu du mail (texte, html...)
// Confirmation de reception
$smtp->Confimation_reception = '';
// Entrez l' adresse où sera renvoyé la confirmation
//smtp_mail('toyou@serveur.com', 'sujet', 'message', 'entête')
if ($smtp->smtp_mail('toyou@serveur.com', 'sujet', 'message')) {
    echo '<div style="text-align:center; color:#008000;">Votre mail a bien été envoyé.</div>', "\r\n";
} else {
    // Affichage des erreurs
    echo $smtp->erreur;
}
开发者ID:D3Cnet,项目名称:cuisine,代码行数:31,代码来源:Version+envoie+complex.php


注:本文中的SMTP::smtp_mail方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。