Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

avoid using ts TIMESTAMP DEFAULT CURRENT_TIMESTAMP #158

Open
wants to merge 10 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 15 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,18 @@ A: It's actually good advice to learn more here: http://support.google.com/mail
2) If that does work, then Google may have blocked your server IP due to too many wrong passwords. You need to log in to gmail.com _from_ that IP - in order to answer the captcha and allow the IP through again. There's a few ways to do that - SOCKS proxy, X forward a browser, use Lynx.

Q: I am getting a Subject set twice error
A: This happens sometimes, typically if it is happening it would also be happening in core Magento. There is a Pull Request [here](https://github.com/aschroder/Magento-SMTP-Pro-Email-Extension/pull/57) that includes a work around thanks to [Rafael Kassner](https://github.com/kassner).
A: This happens sometimes, typically if it is happening it would also be happening in core Magento. There is a Pull Request [here] (https://github.com/aschroder/Magento-SMTP-Pro-Email-Extension/pull/57) that includes a work around thanks to [Rafael Kassner] (https://github.com/kassner).

## Release Notes

# 2.0.8
New version with merged chnages

# 2.0.7
Fix "Access denied" after patch SUPEE-6285
https://github.com/aschroder/Magento-SMTP-Pro-Email-Extension/pull/112/

# 2.0.6
fix log_at to use utc timestamps
fix back link on log view

1 change: 1 addition & 0 deletions app/code/local/Aschroder/SMTPPro/Helper/Data.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ public function logEmailSent($to, $template, $subject, $email, $isHtml)
{
if ($this->isLogEnabled()) {
$log = Mage::getModel('smtppro/email_log')
->setLogAt(Mage::getSingleton('core/date')->gmtDate())
->setEmailTo($to)
->setTemplate($template)
->setSubject($subject)
Expand Down
Loading