newsletter

How do you become an e-newsletter service provider? [closed]

拜拜、爱过 提交于 2019-12-12 02:31:08
问题 Closed . This question needs to be more focused. It is not currently accepting answers. Want to improve this question? Update the question so it focuses on one problem only by editing this post. Closed 2 years ago . One of my clients wants to have an e-newsletter sending out to their clients, I suggest them to use one of the e-newsletter service providers, but they don't want to pay a monthly fee and are thinking of hosting the e-newsletter software themselves and may provide the e-newsletter

Email NewsLetter Background image and rounded corner

梦想与她 提交于 2019-12-11 13:54:29
问题 i am coding Email Templates . Psd given to me that is to be converted to email template is having rounded corners and some background images . Is it good to use background image and images to make rounded corners table or should i use css to make rounded corners along with background images . 回答1: Use images for your corners. You won't get border-radius to work properly across all clients. A 10x10 transparent .png is the best option. I didn't make the rounded corner images but you should get

PhpMailer - Cannot send newsletter to large amount of subscribers

喜你入骨 提交于 2019-12-11 01:59:27
问题 Im having a big problem here! I need to send a newsletter to all my subscribers (around 1200) The thing is that it only sends the newsletter to 150-180 of them. I have a script implemented in php that uses the PhpMailer() class to send the newsletter to all the subscribers. I purchased a plan in MailJet that allows me to send 30 thousand emails per month, so Im using their SMTP host to send the newsletter. Here is my script: $mail = new PHPMailer(); $body = $message; $body = eregi_replace("[\

Sending HTML newsletter emails via google spreadsheet

萝らか妹 提交于 2019-12-10 16:12:35
问题 I have a spreadsheet that updates daily. values in Italic are being updated daily, Bold values are static labels. Date: 9/20/2019 Number of cars in parking lot: 105 Last entry: 09:21 AM Last Check out: Mr.X I have setup a script to send an email with the updates to the users via googlespreadsheet. But the email that users receive is a plain text like this: Date:,9/20/2019,Number of cars in parking lot:,105,Last entry:,09:21 AM,Last Check out:,Mr.X,,,,, How can I make this code to send more

Newsletter: How is it possible to determine how many people opened the e-mail?

孤者浪人 提交于 2019-12-10 12:26:46
问题 Exact duplicate of Is there a way to determine whether an e-mail reaches its destination? Hi all, I heard that it's possible to determine how many people opened a newsletter and analyze WHEN they opened the mail. I just wanted to know how that's possible... is it necessary to generate a "read confirmation" or is such an analysis possible without letting the recipient know? Thanks a lot for your input... 回答1: See also Is there a way to determine whether an e-mail reaches its destination?, my

Magento Redirect from Observer that always works

血红的双手。 提交于 2019-12-09 17:05:01
问题 I am having trouble to create a working redirect in Magento from an observer. As far as I know there are many events that got the response object with them (in the $observer object). Another way would be to use something like Mage::app()->getResponse()->setRedirect(Mage::getUrl('checkout/cart')); as mentioned here https://stackoverflow.com/a/4730200/1700048 by the great Alan Storm. Unfortunately this does not work for me, even when I add sendResponse() like this: Mage::app()->getResponse()-

Hover image (animate) in news letter email

て烟熏妆下的殇ゞ 提交于 2019-12-09 14:07:09
问题 I am trying to create a news letter to go out that will have an image animate when someone hovers over it. they are suppose to find the correct decoration in the email to click to win the prize so when they hover over them 1 will dance. I have it working just fine in basic html for web browsers, the code I am using is a css background so the upper half of the gif is still and the lower half does the moving and it appears when they mouse over it. In emails css backgrounds dont really work for

How to disable Mailchimp double opt-in PHP

断了今生、忘了曾经 提交于 2019-12-09 07:11:21
问题 I'm totally new in Mailshimp stuff and I can't find anything on the web to disable the double opt-in. I don't use any Mailchimp API, I just have the form mailchimp gave me to put in my html. Any idea without using the API or if I have to, by using the API ? Thank you ! 回答1: require('Mailchimp.php'); $api = new Mailchimp( $api_key ); $result = $api->lists->subscribe( $api_key, $id, $data['email'], $merge_vars, 'html', false ); 6th parameter defines that whether to disable the opt-in or not.

Controlling the behavior of the Browsers Back Button

↘锁芯ラ 提交于 2019-12-08 13:44:48
问题 We created an E-Newsletter for a client that includes lots of story links as well as banner adds. The majority of users are reading the newsletter in MS Outlook. The client thinks users will get confused when they click on a link from the newsletter and it opens in their browser and then the user can't hit the browser's back button in order to get back to the newsletter. What are my options? Is it possible to control where the Browsers back button takes the user? I would guess not for

How to know from which email client the HTTP request was coming from? [duplicate]

為{幸葍}努か 提交于 2019-12-08 04:21:52
问题 This question already has answers here : Closed 8 years ago . Possible Duplicate: Email client detection I have a newsletter which will have a link to my websites pages. Now i want to know which email client (gmail, hotmail, outlook) the user opened the newsletter in and clicked the link to the website page. The reason I want to know which email client, is because i want to customize the content in website pages based on the use of email client by users. My Website pages will be coded in PHP