Open tehsu opened 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.
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.
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.
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?
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.
Yeah, I add it as pictured.
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.
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();
}
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.
So, now its getting the name of my list@snyde.net which is Snyde List as the from address.
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.
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.
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
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.
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.
$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.
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.
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.
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.
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.
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.
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.
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.
It's back to just the email, does not show the Name of the person sending the email.
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.
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.
Looks like its working. Thank you so much.
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.
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.
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.
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.
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.
Must be a plugin I have, I'll test it without them.
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.
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.
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.
<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>
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.
Yeah, so when I click the link of course they are broken.
The slashes disappear if I disable the POP.
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.
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.
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.
Looks like everything is working, thank you.
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?
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.
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.
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.
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 =0AHere is= an inline image:
<=
/p>
--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:
Ok, I will check all my settings. As long as it works for you, then I'll figure it out. Thank you so much.
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?