arnoldle / phplist-plugin-submitByMailPlugin

Elements of a plugin to submit messages to Phplist by mail. In development. Planning for June release.
3 stars 6 forks source link

Add name to from address #3

Open tehsu opened 9 years ago

tehsu commented 9 years ago

Is there anyway to get the name added to the from address, for instance we have one list but send from two different emails to the one list. This distinguishes what the email is for to our readers. So when I sent the email right now it shows just the email, can it capture the name of that email address?

arnoldle commented 9 years ago

You’d like the From: address of the person who submits the message to carry through and appear in the message sent to the subscribers? Is that right?

Arnold

On Jun 16, 2015, at 12:24 PM, tehsu notifications@github.com wrote:

Is there anyway to get the name added to the from address, for instance we have one list but send from two different emails to the one list. This distinguishes what the email is for to our readers. So when I sent the email right now it shows just the email, can it capture the name of that email address?

— Reply to this email directly or view it on GitHub https://github.com/arnoldle/phplist-plugin-submitByMailPlugin/issues/3.

tehsu commented 9 years ago

Yeah, so, instead of From: news@snyde.net, I would like From: News news@snyde.net. I'm looking through the code, maybe I can get it myself, but any help is appreciated.

arnoldle commented 9 years ago

Hi,

I don’t think that this is something you can do with my plugin; phpList sets how that address looks.

There is really nothing I can do for you here with the plugin code.

Sorry, Arnold

On Jun 16, 2015, at 1:30 PM, tehsu notifications@github.com wrote:

Yeah, so, instead of From: news@snyde.net mailto:news@snyde.net, I would like From: News news@snyde.net mailto:news@snyde.net. I'm looking through the code, maybe I can get it myself, but any help is appreciated.

— Reply to this email directly or view it on GitHub https://github.com/arnoldle/phplist-plugin-submitByMailPlugin/issues/3#issuecomment-112522233.

tehsu commented 9 years ago

If I send an email from phpList, I can add the name to the from address. For instance, the from line in a campaign has news@snyde.net Snyde News. Is it not possible to add the name of the sender to the from address?

arnoldle commented 9 years ago

You do that by hand, in the editor, right?

A.

On Jun 16, 2015, at 1:39 PM, tehsu notifications@github.com wrote:

If I send an email from phpList, I can add the name to the from address. For instance, the from line in a campaign has news@snyde.net mailto:news@snyde.net Snyde News. Is it not possible to add the name of the sender to the from address?

— Reply to this email directly or view it on GitHub https://github.com/arnoldle/phplist-plugin-submitByMailPlugin/issues/3#issuecomment-112524207.

tehsu commented 9 years ago

screen shot 2015-06-16 at 1 41 37 pm

Yeah, I add it as pictured.

arnoldle commented 9 years ago

As it stands now, the plugin puts the email address of the submitter in the From: line, not the a list address. With phpList, the From: line would normally be the list owner. However, that can be changed in the editor, as you know.

One problem here is that "news@snyde.net mailto:news@snyde.net Snyde News” is not a proper email address. It ought to be Snyde News<news@snyde.net mailto:news@snyde.net>.” So there is no way that the plugin could do the first address. It could probably include a display name in the correct form with some code modifications. But you would need to create a email account news@snyde.net mailto:news@snyde.net with “Snyde News” as the display name. You would need to submit messages to the list from that account.

I don’t see how I could provide an arbitrary From address.

A.

On Jun 16, 2015, at 1:39 PM, tehsu notifications@github.com wrote:

If I send an email from phpList, I can add the name to the from address. For instance, the from line in a campaign has news@snyde.net mailto:news@snyde.net Snyde News. Is it not possible to add the name of the sender to the from address?

— Reply to this email directly or view it on GitHub https://github.com/arnoldle/phplist-plugin-submitByMailPlugin/issues/3#issuecomment-112524207.

tehsu commented 9 years ago

The emails we are using do have the display names set as you've said. Also, the from line can be set as "Snyde News news@snyde.net". I see that the code below strips out the email, does this also send the stripped email to the From: line? All I need is, instead of stripping it to just the email, I would use a regex to keep the name and pass that along to the from line.

    function cleanAdr ($adr) {
            if (preg_match('/<(.*)>/', $adr, $match))
                    return trim($match[1]);
            return trim();
    }
arnoldle commented 9 years ago

I was just looking at that. I think that what we need to do is to define another property: $displayName.

We set it in the cleanAdr function including setting it to an empty string, if there is no display name in the sender’s address.

Then in the function loadMessageData, we change the line

$messagedata['fromfield'] = $this->sender;

to insert the $this->displayName, if it is there.

So here are the changes as I see them:

At line 172: below public $sender; Add public $displayName; (I’m not sure at the moment that these have to be public. Best leave them public for now.)

Then at line 483 change function cleanAdr() as follows:

function cleanAdr ($adr) { 
    $this->displayName = '’; 
     if (preg_match('/<(.*)>/', $adr, $match)) { 
         $this->displayName = trim(str_replace($match[0],'', $adr)); 
         return trim($match[1]); 
    } 
    return trim($adr); 
}

The in the function loadMessageData() the line $messagedata['fromfield'] = $this->sender; becomes

$messagedata['fromfield'] = ($this->displayName? $this->displayName . ‘<‘ . $this->sender . ‘>’ : $this->sender);

The parentheses are not syntactically necessary, but may make the meaning of the line clearer.

Can you try this out and inform me of the result? If everything works OK, I will make the change in the repository.

A.

On Jun 16, 2015, at 2:13 PM, tehsu notifications@github.com wrote:

The emails we are using do have the display names set as you've said. Also, the from line can be set as "Snyde News news@snyde.net mailto:news@snyde.net". I see that the code below strips out the email, does this also send the stripped email to the From: line? All I need is, instead of stripping it to just the email, I would use a regex to keep the name and pass that along to the from line.

function cleanAdr ($adr) {
        if (preg_match('/<(.*)>/', $adr, $match))
                return trim($match[1]);
        return trim();
}

— Reply to this email directly or view it on GitHub https://github.com/arnoldle/phplist-plugin-submitByMailPlugin/issues/3#issuecomment-112533023.

tehsu commented 9 years ago

So, now its getting the name of my list@snyde.net which is Snyde List as the from address.

arnoldle commented 9 years ago

I don' t understand. Did you make the changes I suggested? Is the display name of the sender not being shown?

Sent from my iPad

On Jun 16, 2015, at 3:09 PM, tehsu notifications@github.com wrote:

So, now its getting the name of my list@snyde.net which is Snyde List as the from address.

— Reply to this email directly or view it on GitHub.

tehsu commented 9 years ago

Yes, I made the changes. So I send an email from "Community News community@snyde.net" to "Snyde List list@snyde.net" the list@snyde.net address is where the email is collected using this plugin. Now when I receive the email, it is from "Snyde mailto:Listcommunity@snyde.net" when I check the from on the sent campaign in phplist, it says "Snyde List"

Instead of "Community News" Snyde is being set as the name of the user and list is being prefixed to the actual email address.

tehsu commented 9 years ago

Ok, so I fixed where List becomes part of the domain, it just pulling the name of the collection email instead of the sending email

arnoldle commented 9 years ago

OK. So there is something else going on that we don’t understand yet. I will take a look at it and get back to you.

A.

On Jun 16, 2015, at 3:17 PM, tehsu notifications@github.com wrote:

Yes, I made the changes. So I send an email from "Community News community@snyde.net mailto:community@snyde.net" to "Snyde List list@snyde.net mailto:list@snyde.net" the list@snyde.net mailto:list@snyde.net address is where the email is collected using this plugin. Now when I receive the email, it is from "Snyde Listcommunity@snyde.net mailto:Listcommunity@snyde.net" when I check the from on the sent campaign in phplist, it says "Snyde List"

— Reply to this email directly or view it on GitHub https://github.com/arnoldle/phplist-plugin-submitByMailPlugin/issues/3#issuecomment-112555646.

arnoldle commented 9 years ago

Where is that?

On Jun 16, 2015, at 3:33 PM, tehsu notifications@github.com wrote:

Ok, so I fixed where List becomes part of the domain, it just pulling the name of the collection email instead of the sending email

— Reply to this email directly or view it on GitHub https://github.com/arnoldle/phplist-plugin-submitByMailPlugin/issues/3#issuecomment-112560441.

tehsu commented 9 years ago
    $messagedata['fromfield'] = ($this->displayName ? $this->displayName . ' '  . '<' . $this->sender . '>' : $this->sender);

I added a space between displayName and sender to fix the name becoming part of the email address.

tehsu commented 9 years ago

When I was checking the from line before it was showing "Snyde Listcommunity@snyde.net" now it shows "Snyde List community@snyde.net". Now, it's just grabbing the name of my collection email address instead of the originating email address.

arnoldle commented 9 years ago

If what you told me before is correct, community@snyde.net mailto:community@snyde.net is the address you were sending the message FROM. If that is the case, then it is supposed to show up in the FROM line.

If the display name on the message that you sent to the submission (collection) address was “Community News’, then Snyde List should not appear in the From line.

A.

On Jun 16, 2015, at 3:35 PM, tehsu notifications@github.com wrote:

When I was checking the from line before it was showing "Snyde Listcommunity@snyde.net mailto:community@snyde.net" now it shows "Snyde List community@snyde.net mailto:community@snyde.net". Now it's just grabbing the name of my collection email address instead of the from email address.

— Reply to this email directly or view it on GitHub https://github.com/arnoldle/phplist-plugin-submitByMailPlugin/issues/3#issuecomment-112560914.

arnoldle commented 9 years ago

This does work. Apparently phpList requires that space, even though the RFCs don’t.

Thanks, A.

On Jun 16, 2015, at 3:34 PM, tehsu notifications@github.com wrote:

$messagedata['fromfield'] = ($this->displayName ? $this->displayName . ' '  . '<' . $this->sender . '>' : $this->sender);

I added a space between displayName and sender to fix the name becoming part of the email address.

— Reply to this email directly or view it on GitHub https://github.com/arnoldle/phplist-plugin-submitByMailPlugin/issues/3#issuecomment-112560693.

tehsu commented 9 years ago

Right, it should be Community News. It's showing as Snyde List. Could line 482 have an issue? I tested the preg_match and match[0] gives me the < news@snyde.net > and match[1] gives me news@snyde.net. I am not sure as I am not that knowledgable in this area.

arnoldle commented 9 years ago

When you have a display name, match[0] should show email address with the brackets: that is, the value should be ‘<news@snyde.net mailto:news@snyde.net>’. Without a display name there will be no brackets and no match.

I can’t see any problem at line 482.

What happens if you send a message from community@snyde.net mailto:community@snyde.net with brackets or a display name?

A.

On Jun 16, 2015, at 3:42 PM, tehsu notifications@github.com wrote:

Right, it should be Community News. It's showing as Snyde List. Could line 482 have an issue? I tested the preg_match and match[0] gives me the news@snyde.net mailto:news@snyde.net and match[1] gives me news@snyde.net mailto:news@snyde.net. I am not sure as I am not that knowledgable in this area.

— Reply to this email directly or view it on GitHub https://github.com/arnoldle/phplist-plugin-submitByMailPlugin/issues/3#issuecomment-112563689.

arnoldle commented 9 years ago

OK.

I found the problem. The function cleanAdr is used in more than one place, with the result that the display name of the sender is being overwritten. So we need to make one small change adding an additional parameter with a default value of false:

function cleanAdr ($adr, $setDisplayName=false) { if ($setDisplayName) $this->displayName = '’; if (preg_match('/<(.*)>/', $adr, $match)) { if ($setDisplayName) $this->displayName = trim(str_replace($match[0],'', $adr)); return trim($match[1]); } return trim($adr); }

That ought to do it.

A.

On Jun 16, 2015, at 3:42 PM, tehsu notifications@github.com wrote:

Right, it should be Community News. It's showing as Snyde List. Could line 482 have an issue? I tested the preg_match and match[0] gives me the news@snyde.net mailto:news@snyde.net and match[1] gives me news@snyde.net mailto:news@snyde.net. I am not sure as I am not that knowledgable in this area.

— Reply to this email directly or view it on GitHub https://github.com/arnoldle/phplist-plugin-submitByMailPlugin/issues/3#issuecomment-112563689.

arnoldle commented 9 years ago

Unfortunately, this fix would have an effect on message confirmation, since I don’t save the display name in the database. I am going to have to think about this.

On Jun 16, 2015, at 3:58 PM, Arnold Lesikar alesikar@mac.com wrote:

OK.

I found the problem. The function cleanAdr is used in more than one place, with the result that the display name of the sender is being overwritten. So we need to make one small change adding an additional parameter with a default value of false:

function cleanAdr ($adr, $setDisplayName=false) { if ($setDisplayName) $this->displayName = '’; if (preg_match('/<(.*)>/', $adr, $match)) { if ($setDisplayName) $this->displayName = trim(str_replace($match[0],'', $adr)); return trim($match[1]); } return trim($adr); }

That ought to do it.

A.

On Jun 16, 2015, at 3:42 PM, tehsu <notifications@github.com mailto:notifications@github.com> wrote:

Right, it should be Community News. It's showing as Snyde List. Could line 482 have an issue? I tested the preg_match and match[0] gives me the news@snyde.net mailto:news@snyde.net and match[1] gives me news@snyde.net mailto:news@snyde.net. I am not sure as I am not that knowledgable in this area.

— Reply to this email directly or view it on GitHub https://github.com/arnoldle/phplist-plugin-submitByMailPlugin/issues/3#issuecomment-112563689.

tehsu commented 9 years ago

It's back to just the email, does not show the Name of the person sending the email.

arnoldle commented 9 years ago

Did you try adding the parameter to cleanAdr() as I suggested in a previous email?

On Jun 16, 2015, at 4:07 PM, tehsu notifications@github.com wrote:

It's back to just the email, does not show the Name of the person sending the email.

— Reply to this email directly or view it on GitHub https://github.com/arnoldle/phplist-plugin-submitByMailPlugin/issues/3#issuecomment-112570139.

tehsu commented 9 years ago

Yeah, so I replaced the function that I had with the one you posted, and I just get news@snyde.net for the from address.

tehsu commented 9 years ago

Looks like its working. Thank you so much.

arnoldle commented 9 years ago

The problem is that we did not yet set the value of that parameter when getting the sender. I should have mentioned that -- my Bad.

Go down to the function isBadMsg() and change the line

$this->sender = $this->cleanAdr($hdrs['from']);

to $this->sender = $this->cleanAdr($hdrs['from’], true);

That should fix that problem.

However, there are implications for escrowing messages and confirming messages.

You should copy over new versions of all the plugin files tomorrow. They will be version 1.0b2.2

A,

On Jun 16, 2015, at 4:12 PM, tehsu notifications@github.com wrote:

Yeah, so I replaced the function that I had with the one you posted, and I just get news@snyde.net mailto:news@snyde.net for the from address.

— Reply to this email directly or view it on GitHub https://github.com/arnoldle/phplist-plugin-submitByMailPlugin/issues/3#issuecomment-112571077.

tehsu commented 9 years ago

Ok, it works perfectly. I think I am having issues manually collecting from chrome. I've been having to use safari for collecting. If you want to check it on your side to be sure though.

Thank you for helping me out, now I can stop using mailman.

arnoldle commented 9 years ago

I will take a look after I finish with the current issue. A

On Jun 16, 2015, at 4:26 PM, tehsu notifications@github.com wrote:

Ok, it works perfectly. I think I am having issues manually collecting from chrome. I've been having to use safari for collecting. If you want to check it on your side to be sure though.

Thank you for helping me out, now I can stop using mailman.

— Reply to this email directly or view it on GitHub https://github.com/arnoldle/phplist-plugin-submitByMailPlugin/issues/3#issuecomment-112574144.

tehsu commented 9 years ago

Last thing that I've found, after I add a list the footer gets slashes. Everywhere there is a quote, it automatically adds a slash, I tried firefox and safari. Everytime I save with information filled into it, it adds slashes, this is on the "Submit to List by Mail:" page. If I disable it, the quotes go away.

y_ypfy

arnoldle commented 9 years ago

Chrome works fine for me. If anything it seems faster collecting messages than Safari.

On Jun 16, 2015, at 4:26 PM, tehsu notifications@github.com wrote:

Ok, it works perfectly. I think I am having issues manually collecting from chrome. I've been having to use safari for collecting. If you want to check it on your side to be sure though.

Thank you for helping me out, now I can stop using mailman.

— Reply to this email directly or view it on GitHub https://github.com/arnoldle/phplist-plugin-submitByMailPlugin/issues/3#issuecomment-112574144.

tehsu commented 9 years ago

Must be a plugin I have, I'll test it without them.

tehsu commented 9 years ago

Yeah, the plugin causing the issue with chrome is, Fix Url Links Redirect. Sorry about that. I've tested all three browsers on my last issue with the slash being added by the quotations. I tried incognito as well, still gets added at each save. I'm guessing its something on my end causing it.

arnoldle commented 9 years ago

Thanks for this. Release 1.0b2.2 is now available from my repository. It fixes the display name issue.

I will take a look at the footer problem. A.

On Jun 16, 2015, at 5:04 PM, tehsu notifications@github.com wrote:

Yeah, the plugin causing the issue with chrome is, Fix Url Links Redirect. Sorry about that. I've tested all three browsers on my last issue with the slash being added by the quotations. I tried incognito as well, still gets added at each save. I'm guessing its something on my end causing it.

— Reply to this email directly or view it on GitHub https://github.com/arnoldle/phplist-plugin-submitByMailPlugin/issues/3#issuecomment-112582816.

arnoldle commented 9 years ago

Can you send me the footer that is causing a problem?

On Jun 16, 2015, at 5:04 PM, tehsu notifications@github.com wrote:

Yeah, the plugin causing the issue with chrome is, Fix Url Links Redirect. Sorry about that. I've tested all three browsers on my last issue with the slash being added by the quotations. I tried incognito as well, still gets added at each save. I'm guessing its something on my end causing it.

— Reply to this email directly or view it on GitHub https://github.com/arnoldle/phplist-plugin-submitByMailPlugin/issues/3#issuecomment-112582816.

tehsu commented 9 years ago

<div class=\"footer\" style=\"text-align:left; font-size: 75%;\">
  <p>This message was sent to [EMAIL] by [FROMEMAIL]</p>
  <p>To forward this message, please do not use the forward button of your email application, because this message was made specifically for you only. Instead use the <a href=\"[FORWARDURL]\">forward page</a> in our newsletter system.<br/>
  To change your details and to choose which lists to be subscribed to, visit your personal <a href=\"[PREFERENCESURL]\">preferences page</a><br/>
  Or you can <a href=\"[UNSUBSCRIBEURL]\">opt-out completely</a> from all future mailings.</p>
</div>
arnoldle commented 9 years ago

And you enter the unescaped version into the form, right? and what you sent me with all the back slashes is what shows up in messages?

On Jun 16, 2015, at 5:18 PM, tehsu notifications@github.com wrote:

<div class=\"footer\" style=\"text-align:left; font-size: 75%;\">

This message was sent to [EMAIL] by [FROMEMAIL]

To forward this message, please do not use the forward button of your email application, because this message was made specifically for you only. Instead use the forward page in our newsletter system.
To change your details and to choose which lists to be subscribed to, visit your personal preferences page
Or you can opt-out completely from all future mailings.

— Reply to this email directly or view it on GitHub https://github.com/arnoldle/phplist-plugin-submitByMailPlugin/issues/3#issuecomment-112586363.

tehsu commented 9 years ago

Yeah, so when I click the link of course they are broken.

tehsu commented 9 years ago

The slashes disappear if I disable the POP.

arnoldle commented 9 years ago

That may be the problem. I tested things just with the default footer, and that comes back as correct html with no back slashes. But now I notice in the form that all the quotation marks are backslashed. Again that is in the form

So I think that you must put the backslashes into the footer, and then when the message is sent, phpList will take them out.

On Jun 16, 2015, at 5:25 PM, tehsu notifications@github.com wrote:

Yeah, so when I click the link of course they are broken.

— Reply to this email directly or view it on GitHub https://github.com/arnoldle/phplist-plugin-submitByMailPlugin/issues/3#issuecomment-112587903.

arnoldle commented 9 years ago

You have to backslash the quotation marks in the footer when you configure a list for email submission. If you don’t put in the backslashes there, you will get backslashes in the messages sent. I’ve tested it.

On Jun 16, 2015, at 5:34 PM, tehsu notifications@github.com wrote:

the slashes disappear if I disable the POP.

— Reply to this email directly or view it on GitHub https://github.com/arnoldle/phplist-plugin-submitByMailPlugin/issues/3#issuecomment-112593454.

arnoldle commented 9 years ago

I think that my previous message takes care of the footer issue. I am going to call it a day.

Thank you very, very much for your help with these issues today!

Arnold

On Jun 16, 2015, at 5:34 PM, tehsu notifications@github.com wrote:

the slashes disappear if I disable the POP.

— Reply to this email directly or view it on GitHub https://github.com/arnoldle/phplist-plugin-submitByMailPlugin/issues/3#issuecomment-112593454.

tehsu commented 9 years ago

Looks like everything is working, thank you.

tehsu commented 9 years ago

Whenever you get a chance, I was just wondering, when an email is forwarded with an inline image it gets moved over as an attachment and the inline image outline is still in the email. Is there a way to force it to stay an inline image?

arnoldle commented 9 years ago

Hi,

What I said yesterday about the backslash problem was nonsense. No backslashes should appear in the footer ever. The problem seems to be PHP “magic quotes”. Anyway, it’s fixed in version 1.0b2.3 of the plugin.

To acquire the fix, just replace the file edit_list.php with the corresponding file of the new version. Or even easier, just change line 95 of the old file from

$footer = $row['footer'];

to $footer = stripslashes($row['footer']);

Arnold

On Jun 16, 2015, at 5:34 PM, tehsu notifications@github.com wrote:

the slashes disappear if I disable the POP.

— Reply to this email directly or view it on GitHub https://github.com/arnoldle/phplist-plugin-submitByMailPlugin/issues/3#issuecomment-112593454.

tehsu commented 9 years ago

Awesome, much appreciated! I'm guessing there is no way to preserve a emails inline images or strip them if they are attached, we sent an email and the inline image box was there with the image attached to the email so it looked terrible.

arnoldle commented 9 years ago

I am going to take a look at it.

A.

On Jun 17, 2015, at 12:59 PM, tehsu notifications@github.com wrote:

Awesome, much appreciated! I'm guessing there is no way to preserve a emails inline images or strip them if they are attached, we sent an email and the inline image box was there with the image attached to the email so it looked terrible.

— Reply to this email directly or view it on GitHub https://github.com/arnoldle/phplist-plugin-submitByMailPlugin/issues/3#issuecomment-112893973.

arnoldle commented 9 years ago

I can find no problem with the forwarding of emails containing inline images.

I have tried it with my phpList installation, and the forwarded email contains the same inline image as the original message.

I don’t if it will show up, but I am attaching an example of such a forwarded email.

On Jun 17, 2015, at 12:59 PM, tehsu notifications@github.com wrote:

Awesome, much appreciated! I'm guessing there is no way to preserve a emails inline images or strip them if they are attached, we sent an email and the inline image box was there with the image attached to the email so it looked terrible.

— Reply to this email directly or view it on GitHub https://github.com/arnoldle/phplist-plugin-submitByMailPlugin/issues/3#issuecomment-112893973.

Return-path: domeofth@box512.bluehost.com Received: from mr11p00im-smtpin005.me.com ([17.110.69.193]) by ms03521.mac.com (Oracle Communications Messaging Server 7u4-27.08 (7.0.4.27.7) 64bit (built Aug 22 2013)) with ESMTP id 0NQ300GKDSPKWPE0@ms03521.mac.com for alesikar@mac.com; Wed, 17 Jun 2015 19:27:20 +0000 (GMT) Original-recipient: rfc822;alesikar@mac.com Received: from relay.mailchannels.net ([50.61.143.72]) by mr11p00im-smtpin005.me.com (Oracle Communications Messaging Server 7.0.5.35.0 64bit (built Mar 31 2015)) with ESMTP id 0NQ300MFFSPCX340@mr11p00im-smtpin005.me.com for alesikar@mac.com (ORCPT alesikar@mac.com); Wed, 17 Jun 2015 19:27:20 +0000 (GMT) X-Sender-ID: asmallorange|x-php-originating-script|129.121.176.228:3765:class.phpmailer.php Received: from sara.asoshared.com (ip-10-33-12-218.us-west-2.compute.internal [10.33.12.218]) by relay.mailchannels.net (Postfix) with ESMTPA id 365B0121389 for alesikar@mac.com; Wed, 17 Jun 2015 19:27:11 +0000 (UTC) X-Sender-ID: asmallorange|x-php-originating-script|129.121.176.228:3765:class.phpmailer.php Received: from sara.asoshared.com (sara.asoshared.com [10.232.141.54])

(using TLSv1 with cipher DHE-RSA-AES256-SHA)    by 0.0.0.0:2500 (trex/5.4.8)

; Wed, 17 Jun 2015 19:27:11 +0000 Received: from qproxy2-pub.mail.unifiedlayer.com ([69.89.16.161]:51519 helo=qproxy2.mail.unifiedlayer.com) by sara.asoshared.com with smtp (Exim 4.85) (envelope-from domeofth@box512.bluehost.com) id 1Z5IzN-0005jl-Kr for webmaster@suncitydems.org; Wed, 17 Jun 2015 15:27:09 -0400 Received: (qmail 1323 invoked by uid 0); Wed, 17 Jun 2015 19:27:08 +0000

Received: from unknown (HELO cmgw2) (10.0.90.83) by qproxy2.mail.unifiedlayer.com with SMTP; Wed, 17 Jun 2015 19:27:08 +0000 Received: from box512.bluehost.com ([74.220.219.112]) by cmgw2 with id hWzV1q00G2S60GA01WzYBd; Wed, 17 Jun 2015 12:59:33 -0600 Received: from localhost ([127.0.0.1]:47791 helo=box512.bluehost.com)

by box512.bluehost.com with esmtp (Exim 4.84)
(envelope-from <domeofth@box512.bluehost.com>)
id 1Z5Ifx-0001F5-04 for webmaster@suncitydems.org; Wed,

17 Jun 2015 13:07:05 -0600 To: webmaster@suncitydems.org Subject: Fwd: Test of inline images Received: from r74-193-77-35.pfvlcmta01.grtntx.tl.dh.suddenlink.net [74.193.77.35] by box512.bluehost.com with HTTP; Wed, 17 Jun 2015 13:07:02 -0600 Date: Wed, 17 Jun 2015 13:07:02 -0600 From: alesikar@mac.com Message-id: 9ab84f34f7b397731185bc7b80d0276d@box512.bluehost.com X-Priority: 3 X-Mailer: PHPMailer 5.2.9 (https://github.com/PHPMailer/PHPMailer/) Precedence: bulk Bounces-To: domeofth@box512.bluehost.com List-Help: https://box512.bluehost.com/~domeofth/lists/?p=preferences&uid=forwarded List-Unsubscribe: https://box512.bluehost.com/lists/?p=unsubscribe&uid=forwarded&jo=1 List-Subscribe: https://box512.bluehost.com/~domeofth/lists/?p=subscribe List-Owner: mailto:domeofth@box512.bluehost.com MIME-version: 1.0 Content-type: multipart/alternative; boundary=b1_9ab84f34f7b397731185bc7b80d0276d Authentication-results: mr11p00im-smtpin005.me.com; dkim=none reason="no signature"; dkim-adsp=none x-icloud-spam-score: 30002230 f=mac.com;e=box512.bluehost.com;is=yes;ir=no;pp=ham;spf=?;dkim=?;dmarc=?;wl=absent;pwl=absent;clxs=ham;clxl=absent x-dmarc-info: pass=?; dmarc-policy=(noPolicy); s=; d= X-MANTSH: 1TEIXR1gbG1oaGkNHB0lGUkdDRl5PWBoaEhEKTEMXGx0EGxsbBBsfHwQbHx0QGx4 aHxoRClhNF0sRCm1+FxsRCkxZFxgfEQpZTRdkRURPEQpZSRcYGHEbBh4ZdwYTBhoGGgYHGRwGG RpxGxAadwYaBhoGGgYaBhoGGnEaEBp3BhoRClleF2hueREKQ04XSxsZGmJ4S2BhGGloGXhzBx9 iGxMYHWB4EQpbQxcaZHsZGhpnbGx5emlyGR4aEQpYXBcZBBoEGB4HTRgeHh8eThkFGx0EGxsbB BsfHwQbHx0QGx4aHxsRCl5ZF2deGBxTEQpNXBcHHRkRCkxaF2htTWt7EQpFWBdoEQpFWRdva2s RCk1OF3sRCkxGF01raxEKQ1oXHxoEHBsEGx4ZBB0YEQpCXhcbEQpCRhdtYWhvZV9NR116chEKQ kcXbV5tZ2seG0gefl8RCkJFF2BlZWxlH0NcaENNEQpCThdoRkJAH0h5HUcfZBEKQkwXYGVlbGU fQ1xoQ00RCkJuF2dFG0dEZ0QcRXhMEQpCbBdgZWVsZR9DXGhDTREKQkAXb3BrZGdaYX0TGVARC kJYF2BlZWxlH0NcaENNEQpCeBdnRRtHRGdEHEV4TBEKTV4XGxEKcGcXZlkacFpcHnITfWIRCnB oF2R+cBsdeEJhYEJAEQpwaBdtcH98fU0FQn1aGBEKcGgXYX4aEnN5HGdFeXwRCnBoF2BtGBkaW BxGSH1kEQpwaBdibVJaGF0TSE5rfREKcH8XaHhLS1t/QlpbGk4RCnBfF218U2BfYEt8eV9PEQp wZxdlHURsZEd4W0hbUBEKcH8XYkl+ZExjX21LW2URCnBfF29CYX0ZBXxSbnNiEQpwXxdlTE1iX UN5SU9mWxEKcGMXbkRLSGlaRHJ7WxMRCnBjF2tEe2VNW0Eff2ZfEQpwQxdpZGRdf1hsYkVTTBE = X-CLX-Spam: false X-CLX-Score: 25 X-CLX-Shades: None X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10432:,, definitions=2015-06-17_07:,, signatures=0 X-Proofpoint-Spam-Details: rule=notspam policy=default score=0 spamscore=0 suspectscore=86 phishscore=0 adultscore=0 bulkscore=100 classifier=spam adjust=0 reason=mlx scancount=1 engine=8.0.1-1412110000 definitions=main-1506170324 X-MC-Relay: Neutral X-MailChannels-SenderId: asmallorange|x-php-originating-script|129.121.176.228:3765:class.phpmailer.php X-MailChannels-Auth-Id: asmallorange X-MC-Loop-Signature: 1434569231653:818256039 X-MC-Ingress-Time: 1434569231653 X-Authority-Analysis: v=2.1 cv=O/iq4nNW c=1 sm=1 tr=0 a=IxJfptOL+r1iUUoNfkIlmw==:117 a=IxJfptOL+r1iUUoNfkIlmw==:17 a=cNaOj0WVAAAA:8 a=f5113yIGAAAA:8 a=wPDyFdB5xvgA:10 a=MuaeFusq_UQA:10 a=n-kJSqksAAAA:8 a=8LaAqv5HAAAA:8 a=lyYuGu4CHa5PaZGX25icmyaRxzw=:19 a=27bHaQh8T50A:10 a=XAFQembCKUMA:10 a=ri0ZAXtGAAAA:8 a=p27Z0iBnAAAA:8 a=i7BrDtku1ppBUBL_pIgA:9 a=QEXdDO2ut3YA:10 a=Gus_g1yEoEcA:10 a=NWVoK91CQyQA:10 a=R_IjSbXD38VjIePzDc8A:9 a=_W_S_7VecoQA:10 a=QhmfCWNBt0cA:10 a=HdMDrDQeMYYs2bwjNyEA:9 a=X6ibpDzu5lOY8_c2:18 a=HXjIzolwW10A:10 a=m9NQMchtQM2AhAHdeOMA:9

a=sUhJzhXfzcCoHmky:18 a=KQqxNPgzF0kA:10 X-PHP-Originating-Script: 3765:class.phpmailer.php X-phpList-version: 3.0.12 X-MessageID: 9 X-ListMember: webmaster@suncitydems.org X-Identified-User: {:box512.bluehost.com:domeofth:domeofthesky.com} {sentby:program running on server} X-AuthUser:

--b1_9ab84f34f7b397731185bc7b80d0276d Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable

Here is an inline image:

 <div class=3D"footer" style=3D"text-align:left; font-size: 75%;">
  <p>This message has been forwarded to you by alesikar@mac.com.</p>

  <p>You have not been automatically subscribed to this newsletter.</p>
  <p>If you think this newsletter may interest you, you can <a=0Ahref=

=3D"https://box512.bluehost.com/~domeofth/lists/?p=3Dsubscribe">Subscribe</= a>=0Aand you will receive our next newsletter directly to your inbox.

You can also opt=0Aout completely<= /a> from receiving any further email from our newsletter=0Aapplication, php= List.

</div>

=20

-- powered by phpList, www.phplist.com --

--b1_9ab84f34f7b397731185bc7b80d0276d Content-Type: multipart/related; boundary="b2_9ab84f34f7b397731185bc7b80d0276d"

--b2_9ab84f34f7b397731185bc7b80d0276d Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: quoted-printable

=0A =0A

 Here is= an inline image:

 

=3D""


=0A
=0A

This message has been forwarded to you by alesi= kar@mac.com.

=0A

You have not been automatically subscribed to t= his newsletter.

=0A

If you think this newsletter may interest yo= u, you can Subscribe and you will receive our next newsletter directly to y= our inbox.

=0A

You can also op= t out completely from receiving any further email from our newsletter a= pplication, phpList.

=0A
=0A =0A

<= /p>3D"" --b2_9ab84f34f7b397731185bc7b80d0276d Content-Type: image/png; name="powerphplist.png" Content-Transfer-Encoding: base64 Content-ID: <8a1910007e611e6f0f213b7bfe0f273a> Content-Disposition: inline; filename=powerphplist.png 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 RK5CYII= --b2_9ab84f34f7b397731185bc7b80d0276d Content-Type: image/jpeg; name="collstationB.jpg" Content-Transfer-Encoding: base64 Content-ID: Content-Disposition: inline; filename=collstationB.jpg /9j/4AAQSkZJRgABAgEASABIAAD/7REgUGhvdG9zaG9wIDMuMAA4QklNA+kAAAAAAHgAAwAAAEgA SAAAAAAC2AIo/+H/4gL5AkYDRwUoA/wAAgAAAEgASAAAAAAC2AIoAAEAAABkAAAAAQADAwMAAAAB Jw8AAQABAAAAAAAAAAAAAAAAYAgAGQGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4 QklNA+0AAAAAABAASAAAAAEAAQBIAAAAAQABOEJJTQPzAAAAAAAIAAAAAAAAAAA4QklNBAoAAAAA AAEAADhCSU0nEAAAAAAACgABAAAAAAAAAAI4QklNA/UAAAAAAEgAL2ZmAAEAbGZmAAYAAAAAAAEA L2ZmAAEAoZmaAAYAAAAAAAEAMgAAAAEAWgAAAAYAAAAAAAEANQAAAAEALQAAAAYAAAAAAAE4QklN A/gAAAAAAHAAAP////////////////////////////8D6AAAAAD///////////////////////// ////A+gAAAAA/////////////////////////////wPoAAAAAP////////////////////////// //8D6AAAOEJJTQQIAAAAAAAQAAAAAQAAAkAAAAJAAAAAADhCSU0ECQAAAAAPLAAAAAEAAACAAAAA UgAAAYAAAHsAAAAPEAAYAAH/2P/gABBKRklGAAECAQBIAEgAAP/+ACdGaWxlIHdyaXR0ZW4gYnkg QWRvYmUgUGhvdG9zaG9wqCA0LjAA/+4ADkFkb2JlAGSAAAAAAf/bAIQADAgICAkIDAkJDBELCgsR FQ8MDA8VGBMTFRMTGBEMDAwMDAwRDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAENCwsNDg0Q Dg4QFA4ODhQUDg4ODhQRDAwMDAwREQwMDAwMDBEMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwM /8AAEQgAUgCAAwEiAAIRAQMRAf/dAAQACP/EAT8AAAEFAQEBAQEBAAAAAAAAAAMAAQIEBQYHCAkK CwEAAQUBAQEBAQEAAAAAAAAAAQACAwQFBgcICQoLEAABBAEDAgQCBQcGCAUDDDMBAAIRAwQhEjEF QVFhEyJxgTIGFJGhsUIjJBVSwWIzNHKC0UMHJZJT8OHxY3M1FqKygyZEk1RkRcKjdDYX0lXiZfKz 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 --b2_9ab84f34f7b397731185bc7b80d0276d-- --b1_9ab84f34f7b397731185bc7b80d0276d--

tehsu commented 9 years ago

Ok, I will check all my settings. As long as it works for you, then I'll figure it out. Thank you so much.