Visualizzazione risultati 1 fino 3 di 3

Discussione: problemi con invio email smtp

  1. #1
    Data registrazione
    12-02-2012
    Messaggi
    7

    Predefinito problemi con invio email smtp

    Ciao a tutti,

    apro questa discussione in quanto ho un problema nell'invio dell'email.
    Ho aquisito lo spazio su altervista.org.
    Sto usando la classe PHPMAILER e il codice che ho scritto è il seguente:

    Codice PHP:
    <?php
    include '../gestoreEmail/class.phpmailer.php';

    class
    InvioEmail{

    public function
    invioEmailRemoto($nome,$cognome,$email,$header,$contenuto){

    $mail = new PHPMailer(true); // the true param means it will throw exceptions on errors, which we need to catch

    $mail->IsSMTP(); // telling the class to use SMTP

    echo "sono qui";

    try {
    $mail->SMTPDebug = 2; // enables SMTP debug information (for testing)
    $mail->Mailer = "smtp";
    $mail->SMTPAuth = true;
    $mail->SMTPSecure = "tls"; // enable SMTP authentication
    $mail->Host = "out.virgilio.it"; // sets GMAIL as the SMTP server
    $mail->Port = 587; // set the SMTP port for the GMAIL server
    $mail->Username = "passidibenessere@virgilio.it"; // GMAIL username
    $mail->Password = "***********"; // GMAIL password
    $mail->AddAddress($email, $nome." ".$cognome);
    $mail->setFrom('passidibenessere@virgilio.it','Passi Di Benessere');
    $mail->SetLanguage('it');

    $mail->Subject = $header;
    //$mail->AddEmbeddedImage("../images/logo_scritta_stealth_team.png", "logo");
    //$mail->Body = ''; // optional - MsgHTML will create an alternate automatically
    $mail->IsHTML(true);
    $mail->MsgHTML($contenuto);
    //$mail->AddAttachment('images/phpmailer.gif'); // attachment
    //$mail->AddAttachment('images/phpmailer_mini.gif'); // attachment
    //$mail->AddAttachment('../css/email/email.css');
    $mail->Send();
    echo
    "Message Sent OK<p></p>\n";
    } catch (
    phpmailerException $e) {
    echo
    "phpmailerException".$e->errorMessage(); //Pretty error messages from PHPMailer
    } catch (Exception $e) {
    echo
    "Exception".$e->getMessage(); //Boring error messages from anything else!
    }

    }

    }
    ?>
    mi presenta il seguente errore:

    Codice:
    SMTP -> FROM SERVER:
    SMTP -> FROM SERVER: Method EHLO is not supported.
    SMTP -> ERROR: EHLO not accepted from server: Method EHLO is not supported.
    SMTP -> FROM SERVER:
    SMTP -> ERROR: HELO not accepted from server:
    SMTP -> NOTICE: EOF caught while checking if connectedphpmailerExceptionErreur SMTP : Impossible de se connecter au serveur SMTP.
    sembrerebbe che altervista non permetta l'uso di server esterni per l'invio di email.... Mi confermate la cosa? se si in che modo posso ovviare tale problema?

    Grazie anticipatamente

  2. #2
    L'avatar di saitfainder
    saitfainder non è connesso Sëniör Stäff
    Data registrazione
    06-12-2002
    Residenza
    Torino
    Messaggi
    8,715

    Predefinito

    Sì, confermiamo. Puoi usare la funzione mail() di PHP.


    «È una mia peculiarità distorcere la verità e inventarne di nuove.»
    «I tuoi orientamenti hanno su di me un effetto prossimo allo zero.»


  3. #3
    Data registrazione
    12-02-2012
    Messaggi
    7

    Predefinito

    mmmm con phpmailer non è possibile? se si sapreste gentilmente dirmi come?
    perchè ho provato a togliere tutto quello riguardante smtp esterno ma mi presenta il seguente errore.

    Codice:
    The following From address failed: passidibenessere@virgilio.it : Called Mail() without being connected

Regole di scrittura

  • Non puoi creare nuove discussioni
  • Non puoi rispondere ai messaggi
  • Non puoi inserire allegati.
  • Non puoi modificare i tuoi messaggi
  •