Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am using Simple Mailing List to send emails but the problem is that when the subjects have characters like ç ó í á I get problems. So I found that there is a code to resolve my problem. I just don't know how to add that line to the code.

I need to add this line:

$subject=mb_encode_mimeheader($subject,"UTF-8", "B", "\n"); 

To this code:

<?

class SMLmailer
{
var $subject;
var $use_SMTP;
var $SMTP_server;
var $SMTP_port;
var $SMTP_domain;
var $SMTP_username;
var $SMTP_password;
var $SMTP_from_address;
var $SMTP_response;
var $mail_to;
var $mail_from;
var $mail_bcc;
var $mail_replyto;
var $use_queue;
var $is_HTML;
var $message;
var $success;
var $list_name;
var $unsub_url;
var $send_message;
var $headers;
var $unsub_message;




function SMLmailer()
{
    $this->is_HTML = false; // Set default message type to text

    // Initisalize these using config file variables by default. These can be overridden by user
    global $config; // give class access to config.inc.php variables

    $this->mail_from = $config['owner_email'];
    $this->mail_replyto = $config['owner_email'];
    $this->list_name = $config['list_name'];
    $this->unsub_url = $config['unsub_url'];
    $this->use_queue = false;
    $this->SMTP_port = $config['smtp_port'];
    $this->SMTP_server = $config['smtp_server'];
    $this->SMTP_domain = $config['smtp_domain'];
    $this->SMTP_username = $config['smtp_username'];
    $this->SMTP_password = $config['smtp_password'];
    $this->SMTP_from_address = $config['smtp_from_address'];
    $this->SMTP_response = array();

    $this->use_SMTP = false;
    $this->success = false;
    $this->message = '';    // Initialize original message;
    $this->headers = '';    // Initialize headers
    $this->send_message = '';   // Initialize sent message
    $this->unsub_message = "";
    $this->date = date('r'); 
    $this->message_id = "<".uniqid()."@".$_SERVER["SERVER_NAME"].">";

}

function send()
{
    if ($this->is_HTML)
    {
        $boundary = md5(uniqid(time()));

        $this->message .= "<br /><br />" . $this->unsub_message;

        $this->headers = "Content-Type: multipart/alternative; boundary=\"$boundary\"" . SML_EOL;
        $this->headers .= "MIME-Version: 1.0" . SML_EOL;
        $this->send_message = "If you can read this then you should upgrade to a MIME complaint email reader - try Thunderbird." . SML_EOL;
        $this->send_message .= "--$boundary" . SML_EOL;
        $this->send_message .= "Content-type: text/plain;" . SML_EOL;
        $this->send_message .= "Content-Transfer-Encoding: 7bit" . SML_EOL . SML_EOL;
        $this->send_message .= strip_tags($this->message)  . SML_EOL;
        $this->send_message .= "--$boundary" . SML_EOL;
        $this->send_message .= "Content-type: text/html;" . SML_EOL;
        $this->send_message .= "Content-Transfer-Encoding: 7bit" . SML_EOL . SML_EOL;
        $this->send_message .= $this->message  . SML_EOL;
        $this->send_message .= "--$boundary--" . SML_EOL;
    }
    else
    {
        $this->headers = SML_EOL; // no headers needed for plain text
        $this->message .=  SML_EOL . SML_EOL . $this->unsub_message;
        $this->send_message = $this->message;
    }

    if($this->use_SMTP)
    {
        $SMTP_failure = false;
        $this->send_message = "From: $this->mail_from\r\nTo: $this->mail_to\r\nBcc: \r\nSubject: $this->subject\r\nDate: $this->date\r\nMessage-Id: $this->message_id\r\n$this->headers\r\n$this->send_message";

        $username = base64_encode($this->SMTP_username);
        $password = base64_encode($this->SMTP_password);

        // Attempt SMTP connection
        $this->smtp_connect($this->SMTP_server, $this->SMTP_port, 10);
        $this->SMTP_response['connect']['expected'] = array('220');
        $this->SMTP_response['connect']['received'] = substr(trim($this->get_smtp_response()),0,3);

        // Send EHLO command
        $this->send_smtp_command("EHLO $this->SMTP_domain", $this->handle);
        $this->SMTP_response['EHLO']['expected'] = array('250');
        $this->SMTP_response['EHLO']['received'] = substr(trim($this->get_smtp_response()),0,3);

        // Send AUTH LOGIN command
        $this->send_smtp_command("AUTH LOGIN", $this->handle);
        $this->SMTP_response['AUTH LOGIN']['expected'] = array('334');
        $this->SMTP_response['AUTH LOGIN']['received'] = substr(trim($this->get_smtp_response()),0,3);

        // Send username
        $this->send_smtp_command("$username", $this->handle);
        $this->SMTP_response['username']['expected'] = array('334');
        $this->SMTP_response['username']['received'] = substr(trim($this->get_smtp_response()),0,3);

        // Send password
        $this->send_smtp_command("$password", $this->handle);
        $this->SMTP_response['password']['expected'] = array('235');
        $this->SMTP_response['password']['received'] = substr(trim($this->get_smtp_response()),0,3);

        // Send MAIL FROM command
        $this->send_smtp_command("MAIL FROM: <$this->SMTP_from_address>", $this->handle); // proper format encloses address in brackets <address>
        $this->SMTP_response['MAIL FROM']['expected'] = array('250');
        $this->SMTP_response['MAIL FROM']['received'] = substr(trim($this->get_smtp_response()),0,3);

        if(!empty($this->mail_bcc))
        {
            $recipients = explode(",",$this->mail_bcc);
            foreach($recipients as $recipient)
            {
                $this->send_smtp_command("RCPT TO: <$recipient>", $this->handle); // proper format encloses address in brackets <address>
                $this->SMTP_response['RCPT TO']['expected'] = array('250','251');
                $this->SMTP_response['RCPT TO']['received'] = substr(trim($this->get_smtp_response()),0,3);
            }
        }
        else
        {
            // Send RCPT TO command
            $this->send_smtp_command("RCPT TO: <$this->mail_to>", $this->handle); // proper format encloses address in brackets <address>
            $this->SMTP_response['RCPT TO']['expected'] = array('250','251');
            $this->SMTP_response['RCPT TO']['received'] = substr(trim($this->get_smtp_response()),0,3);
        }

        // Send DATA command
        $this->send_smtp_command("DATA", $this->handle);
        $this->SMTP_response['DATA']['expected'] = array('354');
        $this->SMTP_response['DATA']['received'] = substr(trim($this->get_smtp_response()),0,3);

        // Send period(.) to end message
        $this->send_smtp_command("$this->send_message\r\n.", $this->handle);
        $this->SMTP_response['period']['expected'] = array('250');
        $this->SMTP_response['period']['received'] = substr(trim($this->get_smtp_response()),0,3);

        // Send QUIT command
        $this->send_smtp_command("QUIT", $this->handle);
        $this->SMTP_response['QUIT']['expected'] = array('221');
        $this->SMTP_response['QUIT']['received'] = substr(trim($this->get_smtp_response()),0,3);

        // After sending the QUIT command, run though all expected command replies and compare to epected
        foreach($this->SMTP_response as $commandcheck)
        {
            if (!in_array($commandcheck['received'],$commandcheck['expected'])) $SMTP_failure = true;
        }
        $this->success = !$SMTP_failure;
    }
    else
    {
        if (!$this->is_HTML) $this->headers = '';
        $this->headers .= "From: Me <ne@nme.com>\r\n".$this->mail_bcc."\r\nReply-To: ".$this->mail_replyto."\r\nDate: ".$this->date."\r\nMessage-Id: $this->message_id\r\nX-Mailer: PHP v".phpversion().$eol;
        if(mail($this->mail_to, $this->subject, $this->send_message, $this->headers))
        {
            $this->success = true;
        }
    }
}

function smtp_connect($host, $port, $timeout)
{
    $this->handle = fsockopen($host, $port, $errno, $errstr, $timeout);
    return $this->handle;
}

function send_smtp_command($command)
{
    $data_to_send = $command . "\r\n";
    return fwrite($this->handle,$data_to_send);
}

function get_smtp_response()
{
    $return = '';
    $line = '';
    $loops = 0;
    while((strpos($return,"\r\n")==false Or substr($line,3,1)!=' ') And $loops<100)
    {
        $line = @fgets($this->handle,512);
        $return .= $line;
        $loops++;
    }
    return $return;
}
}

?>

I appreciate any help, I don't understand anything about php. Thank you

share|improve this question
2  
No, this is not what this website is for. We don't offer individual tutoring for throwing together some code. – hakre Oct 17 '12 at 12:11
I don't understand anything about php - hire a developer then. – DaveRandom Oct 17 '12 at 12:12
1  
And do not duplicate your own questions, like this one: stackoverflow.com/questions/12932746/… just an hour ago. – hakre Oct 17 '12 at 12:12

closed as not a real question by hakre, DaveRandom, phant0m, Nik...., bensiu Oct 17 '12 at 13:07

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

2 Answers

In the send function you can

paste this code will working $this->subject=mb_encode_mimeheader($this->subject,"UTF-8", "B", "\n");

share|improve this answer
Thank you very much for your help. Can you please tell me where to past it? – user1752903 Oct 17 '12 at 12:17
function send() { $this->subject=mb_encode_mimeheader($this->subject,"UTF-8", "B", "\n"); – Elby Oct 17 '12 at 12:19
In the send function – Elby Oct 17 '12 at 12:20
Thank very much. It works, but not totally. Instead of getting the character "ç" I just don't get it, it is now not appearing at all,nothing instead of it. – user1752903 Oct 17 '12 at 12:40
i said how to integrate your given line in to php that's only – Elby Oct 17 '12 at 12:44
show 2 more comments

You can also use Php list to send emails.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.