Unable to send email from site

EzGenerator V4 forum

Return to “Ezgenerator v4 Customer Forum”

[You can only see part of this thread as you are not logged in to the forums]
Calfasoft
Fri Nov 01, 2013 3:18 pm

x

Unable to send email from site

I noticed that the function of sending email from the site no longer works, and I believe that this is due to some changes made by the provider of which I have no news.

does not work and sending the form does not work either send the newsletter, in short anything having to do with sending email does not work anymore.

just try to connect to the page, and try to fill out the form
http://www.calfa.it/documents/contatti.html

the fact is that the provider arch support for testing the service in question, and with that php code everything works perfectly, so I think something should be amended in EZGenerator but I do not know what.

before writing I have done several tests, and even using SMTP authentication I was able to make it work

Can you help me ???

php code that the provider (aruba.it) provides for the test is as follows:

Code: Select all

<?php

error_reporting(E_ALL);

// Genera un boundary
$mail_boundary = "=_NextPart_" . md5(uniqid(time()));
 
$to = "youremail@yourprovider.com";
$subject = "Testing e-mail";
$sender = "postmaster@calfa.it";

 
$headers = "From: $sender\n";
$headers .= "MIME-Version: 1.0\n";
$headers .= "Content-Type: multipart/alternative;\n\tboundary=\"$mail_boundary\"\n";
$headers .= "X-Mailer: PHP " . phpversion();
 
// Corpi del messaggio nei due formati testo e HTML
$text_msg = "messaggio in formato testo";
$html_msg = "<b>messaggio</b> in formato <p><a href='http://www.aruba.it'>html</a><br><img src=\"http://hosting.aruba.it/image_top/top_01.gif\" border=\"0\"></p>";
 
// Costruisci il corpo del messaggio da inviare
$msg = "This is a multi-part message in MIME format.\n\n";
$msg .= "--$mail_boundary\n";
$msg .= "Content-Type: text/plain; charset=\"iso-8859-1\"\n";
$msg .= "Content-Transfer-Encoding: 8bit\n\n";
$msg .= "Questa è una e-Mail di test inviata dal servizio Hosting di Aruba.it per la verifica del corretto funzionamento di PHP mail()function .

Aruba.it";  // aggiungi il messaggio in formato text
 
$msg .= "\n--$mail_boundary\n";
$msg .= "Content-Type: text/html; charset=\"iso-8859-1\"\n";
$msg .= "Content-Transfer-Encoding: 8bit\n\n";
$msg .= "Questa è una e-Mail di test inviata dal servizio Hosting di Aruba.it per la verifica del corretto funzionamento di PHP mail()function .

Aruba.it";  // aggiungi il messaggio in formato HTML
 
// Boundary di terminazione multipart/alternative
$msg .= "\n--$mail_boundary--\n";
 
// Imposta il Return-Path (funziona solo su hosting Windows)
ini_set("sendmail_from", $sender);
 
// Invia il messaggio, il quinto parametro "-f$sender" imposta il Return-Path su hosting Linux
if (mail($to, $subject, $msg, $headers, "-f$sender")) { 
    echo "Mail inviata correttamente !<br><br>Questo di seguito è il codice sorgente usato per l'invio della mail:<br><br>";
    highlight_file($_SERVER["SCRIPT_FILENAME"]);
    unlink($_SERVER["SCRIPT_FILENAME"]);
} else { 
    echo "<br><br>Recapito e-Mail fallito!";
}

?>

miro (staff)
Site Admin
Mon Nov 04, 2013 8:11 am

x

Re: Unable to send email from site

hi go to project settings --> php and set :...

Calfasoft
Mon Nov 04, 2013 9:32 am

x

Re: Unable to send email from site

Sometimes the simplest solutions are those that...


Return to “Ezgenerator v4 Customer Forum”