User Basher - Stack Overflowmost recent 30 from stackoverflow.com2009-12-10T19:47:56Zhttp://stackoverflow.com/feeds/user/132187http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1875851/specify-includepath-directory-to-zendtranslate/1880827#18808270Answer by Basher for Specify include_path directory to Zend_Translate?Basher2009-12-10T12:58:52Z2009-12-10T12:58:52Z<p>You'll need to define the application path somewhere. If you don't want to set an absolute path, you'll need to set a relative path. Take this dir structure for example:</p>
<pre><code>/application/
/application/i18n/
/public_html/
/public_html/index.php
</code></pre>
<p>The application path in this case would be:</p>
<pre><code>define('APPLICATION_PATH', '../application');
</code></pre>
<p>And you can use it like this:</p>
<pre><code>Zend_Translate( 'gettext', APPLICATION_PATH . '/i18n', 'en' );
</code></pre>
<p>Hope that helps.</p>
http://stackoverflow.com/questions/1094137/zend-mail-gmail-smtp/1095354#10953540Answer by Basher for Zend Mail Gmail SMTPBasher2009-07-07T23:25:07Z2009-07-07T23:25:07Z<p>Try setting ssl:// as prefix for the hostname and use 465 as port.</p>
http://stackoverflow.com/questions/306013/php-form-not-showing-up-in-recipients-mailbox/1077429#10774290Answer by Basher for PHP Form not showing up in recipient's mailboxBasher2009-07-03T01:15:52Z2009-07-03T01:15:52Z<p>The From header line is not correct. There is text outside of the quotes:</p>
<pre><code>From: "{name}" {phone} <{email}> <{message}>
</code></pre>
<p>And what's the <{message}> doing there. The only correct format would be:</p>
<pre><code>From: "{name} {phone}" <{email}>
</code></pre>
<p>You can't use the message placeholder there because it contains new lines and that will break the mail header.</p>
http://stackoverflow.com/questions/971565/php-form-sending-information-to-limbo/1077408#10774080Answer by Basher for PHP Form Sending Information to Limbo!Basher2009-07-03T01:03:58Z2009-07-03T01:03:58Z<p>You should make sure that the e-mail addresses in the mail template mail.tpl.txt have the correct format. E-mail addresses should be in angle brackes:</p>
<pre><code>From: <visitor@example.com>
</code></pre>
<p>If you're using the fields firstname and lastname, they need to be in quotes:</p>
<pre><code>From: "{firstname} {lastname}" <vistor@example.com>
</code></pre>
<p>Other possibilities, why the script won't send e-mails: Windows server with no MTA. Mails get caught by a spam filter somewhere on the way.</p>
<p>You should test if the server can even send e-mails:</p>
<pre><code><?php
mail('your-email@example.com', 'Test-Subject', 'Test-Message');
?>
</code></pre>