newsletter

Media queries not working on iPhone's Mail

北慕城南 提交于 2019-12-07 18:06:47
问题 I'm facing a problem with a newsletter. I have included media queries in it so mobile viewers get something nicer. If I view my newsletter in a browser and resize it, I can see that it works fine, both on mobile/desktop. But when I view it through iphone's Mail app, my media queries are getting ignored for some reasons I'm not aware about. The mailbox I'm testing it with isn't a gmail one by the way. You can see it here : http://www.libraryofarts.com/newsletters/11-06-13/ Here's the head part

Magento newsletter auto checked on registration Page

烂漫一生 提交于 2019-12-06 13:50:21
问题 I'm running magento 1.7.0.2 and I want the checkbox of the newsletter subscription on the registration page checked by default. I have followed a few hacks but they were all written for older versions of magento. Here's a link to one of the hacks which I tried and didn't work: Force newsletter subscription in Magento Any help is greatly appreciated! <div class="account-create"> <div class="page-title"> <h1><?php echo $this->__('Complete your profile') ?></h1> </div> <?php echo $this-

how to send image in newsletter?

和自甴很熟 提交于 2019-12-06 01:06:50
问题 can anyone tell me how can i send images as main body part in newsletter. how can i add any image from backend such that when i send a newsletter to the subscribers the image i want to show goes as main body part of the mail. actually what i am saying is i have a form in which i can enter text and that text goes well in newsletter. now i want to add images in the form as well so that i don't need to write anything and only image will go in the mail as main body part of mail. Thank you so much

Media queries not working on iPhone's Mail

*爱你&永不变心* 提交于 2019-12-05 21:39:52
I'm facing a problem with a newsletter. I have included media queries in it so mobile viewers get something nicer. If I view my newsletter in a browser and resize it, I can see that it works fine, both on mobile/desktop. But when I view it through iphone's Mail app, my media queries are getting ignored for some reasons I'm not aware about. The mailbox I'm testing it with isn't a gmail one by the way. You can see it here : http://www.libraryofarts.com/newsletters/11-06-13/ Here's the head part of my code : <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <meta name=

Getting my HTML into Email [closed]

南笙酒味 提交于 2019-12-05 11:40:45
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed last year . I created a HTML template that I want to get into an email so it can be sent out, but how does one do this? I have Outlook 2016 and research I had read before with Outlook 2013 and below you could 'insert text' instead of the linked file, but Outlook have removed this. I would be willing to use another program in

How to handle mail delivery errors with PHP

房东的猫 提交于 2019-12-04 21:26:11
I am building a symfony module for sending newsletters. the idea is to build a queue list of adreeses to receice the mail and then ,with a cron job, send let's say 50 at a time. What i don't now how to do is to read the Mail Delivery reports that are sent back by the server when an email adress doesn't exist or the mail is full. The idea is to store these error reports an clean the adress list. Any ideea how to implement that? When reading the "bounced inbox", you can use a class like this to actually parse the mail and see what status was returned (e.g. permanent or temporary error): http:/

Hotmail not showing html or css background

孤街醉人 提交于 2019-12-04 21:17:48
I had problems with backgrounds not showing in most E-Mail clients such as GMail or Yahoo Mail but I found this thread and problem solved by replacing (although I lost some properties like background-repeat and position) <table style="background: url('bg.png');"> to <table background="bg.png"> . But now I'm facing the same problem in Hotmail and none of the above form of codes seems to work. This page is the reference of answers to most similar questions in stackoverflow, and it says that Outlook.com (new hotmail) does not support css background and I should use background attribute instead,

Magento newsletter auto checked on registration Page

半城伤御伤魂 提交于 2019-12-04 19:18:48
I'm running magento 1.7.0.2 and I want the checkbox of the newsletter subscription on the registration page checked by default. I have followed a few hacks but they were all written for older versions of magento. Here's a link to one of the hacks which I tried and didn't work: Force newsletter subscription in Magento Any help is greatly appreciated! <div class="account-create"> <div class="page-title"> <h1><?php echo $this->__('Complete your profile') ?></h1> </div> <?php echo $this->getChildHtml('form_fields_before')?> <?php echo $this->getMessagesBlock()->getGroupedHtml() ?> <?php /*

Sending HTML newsletters with plain-text fallback

吃可爱长大的小学妹 提交于 2019-12-04 06:47:20
I am currently using a script which uses file_get_contents to get the contents of a php file, and then sends it inside an email to a list of customers. I would like to alter the script to allow for plain-text fallback to reduce the risk of being marked as spam. This is the script I have at the moment: function sendit($to,$subject,$body) { $headers = "To: <{$to}>\n". "From: Test Newsletter Admin <newsletter@test.co.uk>\n". "Reply-To: Test Newsletter Admin <newsletter@test.co.uk>\n". "MIME-Version: 1.0\n". "Content-Type: text/html; charset=ISO-8859-1\n"; $mail_sent = @mail($to, $subject, $body,

Effectively using Google App Engine to send lots of emails using PHP?

妖精的绣舞 提交于 2019-12-03 21:58:53
I currently have a client website on the Grid server on MediaTemple that will be moved to a Virtual Private Server soon. Currently it's using some hacks to trickle his massive email sendouts using cron jobs and queuing with the database (to avoid going over the limit MediaTemple set). We can't use third party solutions (like MailChimp etc) as the price is just too much for the client to pay (he has 75,000+ people on his mailing list). So after lots of research, I've found that using Google App Engine as basically a scalable way to send out lots of emails is a viable option. His site uses PHP