Welcome Guest, Not a member yet? Register   Sign In
I'm totally confused.... (email debug error) with verizon outgoing e-mail.
#1

[eluser]internut[/eluser]
Hey All,

Wonder if anyone can provide something here... No clue what is going on.

After a run around I finally got the SMTP auth to work with the verizon account here at an office I'm working at.

If I change the SMTP auth user & pass values to be incorrect it spits out an error. So I know its connecting.

This is what the debugger is telling me with this code ( i went all the way down to the basics):

Code:
<?php


$config['protocol'] = 'smtp';
$config['smtp_host'] = 'outgoing.verizon.net';
$config['mailpath'] = '/usr/sbin/sendmail';
$config['wordwrap'] = TRUE;
$config['smtp_user'] = 'USER';
$config['smtp_pass'] = 'PASS';
$config['smtp_port'] = '25';
$config['mailtype'] = 'html';
$config['charset'] = 'utf-8';
$config['crlf'] = '\r\n';
$config['newline'] = '\r\n';


$this->email->from('[email protected]', 'Your Name');
$this->email->to('[email protected]');
$this->email->cc('[email protected]');
$this->email->bcc('[email protected]');

$this->email->subject('Email Test');
$this->email->message('Testing the email class.');

$this->email->initialize($config);

$this->email->send();

echo $this->email->print_debugger();
?>

This is what the debugger is telling me:

Code:
220 vms173005pub.verizon.net -- Server ESMTP (Sun Java(tm) System Messaging Server 7u2-7.02 32bit (built Apr 16 2009))

hello: 250-vms173005pub.verizon.net
250-8BITMIME
250-PIPELINING
250-CHUNKING
250-DSN
250-ENHANCEDSTATUSCODES
250-HELP
250-XLOOP 93DF2ACD93F796486A99418640536933
250-AUTH PLAIN LOGIN
250-AUTH=LOGIN PLAIN
250-ETRN
250-NO-SOLICITING
250 SIZE 20971520

from: 250 2.5.0 Address Ok.

data: 554 5.5.0 No recipients have been specified.

The following SMTP error was encountered: 554 5.5.0 No recipients have been specified.
500 5.5.1 Unknown command "User-Agent: CodeIgniter" specified
The following SMTP error was encountered: 500 5.5.1 Unknown command "User-Agent: CodeIgniter" specified
Unable to send email using PHP SMTP. Your server might not be configured to send mail using this method.

User-Agent: CodeIgniter
Date: Wed, 31 Mar 2010 14:31:10 -0400
Reply-To: "" <>
X-Mailer: CodeIgniter
X-Priority: 3 (Normal)
Message-ID: <4bb394ee96de4>
Mime-Version: 1.0


Content-Type: text/plain; charset=utf-8
Content-Transfer-Encoding: 8bit

WTH??? No recipients specified???

If someone can provide any assistance I owe ya one!

This is driving me nuts!
#2

[eluser]internut[/eluser]
I do not know what the heck I did but its accepting the e-mails now..... ughhhhhhhhh!




Theme © iAndrew 2016 - Forum software by © MyBB