sisimai 4.16.0-java
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of sisimai might be problematic. Click here for more details.
- checksums.yaml +7 -0
- data/.gitignore +12 -0
- data/.rspec +2 -0
- data/.rubocop.yml +182 -0
- data/.travis.yml +18 -0
- data/ANALYTICAL-PRECISION +56 -0
- data/Changes +36 -0
- data/Developers.mk +129 -0
- data/Gemfile +15 -0
- data/LICENSE +25 -0
- data/Makefile +70 -0
- data/README.md +361 -0
- data/Rakefile +12 -0
- data/Repository.mk +69 -0
- data/appveyor.yml +23 -0
- data/bin/console +14 -0
- data/bin/setup +7 -0
- data/lib/sisimai.rb +95 -0
- data/lib/sisimai/address.rb +224 -0
- data/lib/sisimai/arf.rb +338 -0
- data/lib/sisimai/data.rb +409 -0
- data/lib/sisimai/data/json.rb +40 -0
- data/lib/sisimai/data/yaml.rb +32 -0
- data/lib/sisimai/datetime.rb +511 -0
- data/lib/sisimai/mail.rb +82 -0
- data/lib/sisimai/mail/maildir.rb +82 -0
- data/lib/sisimai/mail/mbox.rb +69 -0
- data/lib/sisimai/mail/stdin.rb +53 -0
- data/lib/sisimai/mda.rb +152 -0
- data/lib/sisimai/message.rb +525 -0
- data/lib/sisimai/mime.rb +127 -0
- data/lib/sisimai/msp.rb +54 -0
- data/lib/sisimai/msp/de/einsundeins.rb +174 -0
- data/lib/sisimai/msp/de/gmx.rb +197 -0
- data/lib/sisimai/msp/jp/biglobe.rb +179 -0
- data/lib/sisimai/msp/jp/ezweb.rb +292 -0
- data/lib/sisimai/msp/jp/kddi.rb +195 -0
- data/lib/sisimai/msp/ru/mailru.rb +306 -0
- data/lib/sisimai/msp/ru/yandex.rb +241 -0
- data/lib/sisimai/msp/uk/messagelabs.rb +250 -0
- data/lib/sisimai/msp/us/amazonses.rb +248 -0
- data/lib/sisimai/msp/us/amazonworkmail.rb +224 -0
- data/lib/sisimai/msp/us/aol.rb +234 -0
- data/lib/sisimai/msp/us/bigfoot.rb +243 -0
- data/lib/sisimai/msp/us/facebook.rb +306 -0
- data/lib/sisimai/msp/us/google.rb +357 -0
- data/lib/sisimai/msp/us/office365.rb +273 -0
- data/lib/sisimai/msp/us/outlook.rb +242 -0
- data/lib/sisimai/msp/us/receivingses.rb +247 -0
- data/lib/sisimai/msp/us/sendgrid.rb +257 -0
- data/lib/sisimai/msp/us/verizon.rb +311 -0
- data/lib/sisimai/msp/us/yahoo.rb +178 -0
- data/lib/sisimai/msp/us/zoho.rb +198 -0
- data/lib/sisimai/mta.rb +54 -0
- data/lib/sisimai/mta/activehunter.rb +155 -0
- data/lib/sisimai/mta/apachejames.rb +194 -0
- data/lib/sisimai/mta/courier.rb +307 -0
- data/lib/sisimai/mta/domino.rb +209 -0
- data/lib/sisimai/mta/exchange.rb +314 -0
- data/lib/sisimai/mta/exim.rb +549 -0
- data/lib/sisimai/mta/imailserver.rb +227 -0
- data/lib/sisimai/mta/interscanmss.rb +167 -0
- data/lib/sisimai/mta/mailfoundry.rb +173 -0
- data/lib/sisimai/mta/mailmarshalsmtp.rb +206 -0
- data/lib/sisimai/mta/mcafee.rb +201 -0
- data/lib/sisimai/mta/messagingserver.rb +241 -0
- data/lib/sisimai/mta/mfilter.rb +190 -0
- data/lib/sisimai/mta/mxlogic.rb +283 -0
- data/lib/sisimai/mta/notes.rb +206 -0
- data/lib/sisimai/mta/opensmtpd.rb +225 -0
- data/lib/sisimai/mta/postfix.rb +306 -0
- data/lib/sisimai/mta/qmail.rb +335 -0
- data/lib/sisimai/mta/sendmail.rb +317 -0
- data/lib/sisimai/mta/surfcontrol.rb +193 -0
- data/lib/sisimai/mta/userdefined.rb +148 -0
- data/lib/sisimai/mta/v5sendmail.rb +232 -0
- data/lib/sisimai/mta/x1.rb +156 -0
- data/lib/sisimai/mta/x2.rb +157 -0
- data/lib/sisimai/mta/x3.rb +171 -0
- data/lib/sisimai/mta/x4.rb +365 -0
- data/lib/sisimai/mta/x5.rb +208 -0
- data/lib/sisimai/order.rb +220 -0
- data/lib/sisimai/reason.rb +234 -0
- data/lib/sisimai/reason/blocked.rb +105 -0
- data/lib/sisimai/reason/contenterror.rb +53 -0
- data/lib/sisimai/reason/exceedlimit.rb +60 -0
- data/lib/sisimai/reason/expired.rb +53 -0
- data/lib/sisimai/reason/filtered.rb +98 -0
- data/lib/sisimai/reason/hasmoved.rb +45 -0
- data/lib/sisimai/reason/hostunknown.rb +79 -0
- data/lib/sisimai/reason/mailboxfull.rb +118 -0
- data/lib/sisimai/reason/mailererror.rb +55 -0
- data/lib/sisimai/reason/mesgtoobig.rb +82 -0
- data/lib/sisimai/reason/networkerror.rb +58 -0
- data/lib/sisimai/reason/norelaying.rb +71 -0
- data/lib/sisimai/reason/notaccept.rb +63 -0
- data/lib/sisimai/reason/onhold.rb +45 -0
- data/lib/sisimai/reason/rejected.rb +101 -0
- data/lib/sisimai/reason/securityerror.rb +72 -0
- data/lib/sisimai/reason/spamdetected.rb +172 -0
- data/lib/sisimai/reason/suspend.rb +58 -0
- data/lib/sisimai/reason/systemerror.rb +69 -0
- data/lib/sisimai/reason/systemfull.rb +45 -0
- data/lib/sisimai/reason/toomanyconn.rb +73 -0
- data/lib/sisimai/reason/userunknown.rb +194 -0
- data/lib/sisimai/rfc2606.rb +24 -0
- data/lib/sisimai/rfc3464.rb +497 -0
- data/lib/sisimai/rfc3834.rb +150 -0
- data/lib/sisimai/rfc5322.rb +204 -0
- data/lib/sisimai/rhost.rb +47 -0
- data/lib/sisimai/rhost/googleapps.rb +237 -0
- data/lib/sisimai/smtp.rb +58 -0
- data/lib/sisimai/smtp/reply.rb +84 -0
- data/lib/sisimai/smtp/status.rb +758 -0
- data/lib/sisimai/string.rb +65 -0
- data/lib/sisimai/time.rb +11 -0
- data/lib/sisimai/version.rb +4 -0
- data/set-of-emails/README.md +35 -0
- data/set-of-emails/mailbox/mbox-0 +2467 -0
- data/set-of-emails/mailbox/mbox-1 +71 -0
- data/set-of-emails/maildir/bsd/README.md +261 -0
- data/set-of-emails/maildir/bsd/activehunter-01.eml +54 -0
- data/set-of-emails/maildir/bsd/activehunter-02.eml +53 -0
- data/set-of-emails/maildir/bsd/apachejames-01.eml +46 -0
- data/set-of-emails/maildir/bsd/arf-01.eml +66 -0
- data/set-of-emails/maildir/bsd/arf-02.eml +68 -0
- data/set-of-emails/maildir/bsd/arf-03.eml +56 -0
- data/set-of-emails/maildir/bsd/arf-04.eml +89 -0
- data/set-of-emails/maildir/bsd/arf-05.eml +82 -0
- data/set-of-emails/maildir/bsd/arf-06.eml +166 -0
- data/set-of-emails/maildir/bsd/arf-07.eml +59 -0
- data/set-of-emails/maildir/bsd/arf-08.eml +103 -0
- data/set-of-emails/maildir/bsd/arf-09.eml +104 -0
- data/set-of-emails/maildir/bsd/arf-10.eml +56 -0
- data/set-of-emails/maildir/bsd/arf-11.eml +37 -0
- data/set-of-emails/maildir/bsd/arf-12.eml +40 -0
- data/set-of-emails/maildir/bsd/arf-13.eml +76 -0
- data/set-of-emails/maildir/bsd/arf-14.eml +333 -0
- data/set-of-emails/maildir/bsd/arf-15.eml +66 -0
- data/set-of-emails/maildir/bsd/courier-01.eml +79 -0
- data/set-of-emails/maildir/bsd/courier-02.eml +83 -0
- data/set-of-emails/maildir/bsd/courier-03.eml +85 -0
- data/set-of-emails/maildir/bsd/courier-04.eml +87 -0
- data/set-of-emails/maildir/bsd/de-einsundeins-01.eml +38 -0
- data/set-of-emails/maildir/bsd/de-gmx-01.eml +52 -0
- data/set-of-emails/maildir/bsd/de-gmx-02.eml +51 -0
- data/set-of-emails/maildir/bsd/de-gmx-03.eml +56 -0
- data/set-of-emails/maildir/bsd/de-gmx-04.eml +51 -0
- data/set-of-emails/maildir/bsd/domino-01.eml +33 -0
- data/set-of-emails/maildir/bsd/domino-02.eml +83 -0
- data/set-of-emails/maildir/bsd/exchange-01.eml +31 -0
- data/set-of-emails/maildir/bsd/exchange-02.eml +67 -0
- data/set-of-emails/maildir/bsd/exchange-03.eml +52 -0
- data/set-of-emails/maildir/bsd/exchange-04.eml +28 -0
- data/set-of-emails/maildir/bsd/exchange-05.eml +56 -0
- data/set-of-emails/maildir/bsd/exchange-06.eml +151 -0
- data/set-of-emails/maildir/bsd/exim-01.eml +46 -0
- data/set-of-emails/maildir/bsd/exim-02.eml +41 -0
- data/set-of-emails/maildir/bsd/exim-03.eml +42 -0
- data/set-of-emails/maildir/bsd/exim-04.eml +46 -0
- data/set-of-emails/maildir/bsd/exim-05.eml +49 -0
- data/set-of-emails/maildir/bsd/exim-06.eml +44 -0
- data/set-of-emails/maildir/bsd/exim-07.eml +28 -0
- data/set-of-emails/maildir/bsd/exim-08.eml +42 -0
- data/set-of-emails/maildir/bsd/exim-09.eml +169 -0
- data/set-of-emails/maildir/bsd/exim-10.eml +718 -0
- data/set-of-emails/maildir/bsd/exim-11.eml +718 -0
- data/set-of-emails/maildir/bsd/exim-12.eml +75 -0
- data/set-of-emails/maildir/bsd/exim-13.eml +145 -0
- data/set-of-emails/maildir/bsd/exim-14.eml +32 -0
- data/set-of-emails/maildir/bsd/exim-15.eml +49 -0
- data/set-of-emails/maildir/bsd/exim-16.eml +98 -0
- data/set-of-emails/maildir/bsd/exim-17.eml +50 -0
- data/set-of-emails/maildir/bsd/exim-18.eml +96 -0
- data/set-of-emails/maildir/bsd/exim-19.eml +52 -0
- data/set-of-emails/maildir/bsd/exim-20.eml +159 -0
- data/set-of-emails/maildir/bsd/exim-21.eml +150 -0
- data/set-of-emails/maildir/bsd/exim-22.eml +50 -0
- data/set-of-emails/maildir/bsd/exim-23.eml +57 -0
- data/set-of-emails/maildir/bsd/exim-24.eml +107 -0
- data/set-of-emails/maildir/bsd/exim-25.eml +18 -0
- data/set-of-emails/maildir/bsd/exim-26.eml +111 -0
- data/set-of-emails/maildir/bsd/exim-27.eml +120 -0
- data/set-of-emails/maildir/bsd/exim-28.eml +148 -0
- data/set-of-emails/maildir/bsd/google-apps-01.eml +66 -0
- data/set-of-emails/maildir/bsd/imailserver-01.eml +27 -0
- data/set-of-emails/maildir/bsd/imailserver-02.eml +36 -0
- data/set-of-emails/maildir/bsd/imailserver-03.eml +28 -0
- data/set-of-emails/maildir/bsd/imailserver-04.eml +15 -0
- data/set-of-emails/maildir/bsd/imailserver-05.eml +92 -0
- data/set-of-emails/maildir/bsd/imailserver-06.eml +29 -0
- data/set-of-emails/maildir/bsd/interscanmss-01.eml +49 -0
- data/set-of-emails/maildir/bsd/interscanmss-02.eml +259 -0
- data/set-of-emails/maildir/bsd/jp-biglobe-01.eml +43 -0
- data/set-of-emails/maildir/bsd/jp-ezweb-01.eml +36 -0
- data/set-of-emails/maildir/bsd/jp-ezweb-02.eml +65 -0
- data/set-of-emails/maildir/bsd/jp-ezweb-03.eml +35 -0
- data/set-of-emails/maildir/bsd/jp-ezweb-04.eml +38 -0
- data/set-of-emails/maildir/bsd/jp-ezweb-05.eml +38 -0
- data/set-of-emails/maildir/bsd/jp-ezweb-06.eml +33 -0
- data/set-of-emails/maildir/bsd/jp-kddi-01.eml +49 -0
- data/set-of-emails/maildir/bsd/jp-kddi-02.eml +54 -0
- data/set-of-emails/maildir/bsd/jp-kddi-03.eml +54 -0
- data/set-of-emails/maildir/bsd/mailfoundry-01.eml +50 -0
- data/set-of-emails/maildir/bsd/mailfoundry-02.eml +49 -0
- data/set-of-emails/maildir/bsd/mailmarshalsmtp-01.eml +43 -0
- data/set-of-emails/maildir/bsd/mcafee-01.eml +63 -0
- data/set-of-emails/maildir/bsd/mcafee-02.eml +65 -0
- data/set-of-emails/maildir/bsd/mcafee-03.eml +59 -0
- data/set-of-emails/maildir/bsd/messagingserver-01.eml +102 -0
- data/set-of-emails/maildir/bsd/messagingserver-02.eml +72 -0
- data/set-of-emails/maildir/bsd/messagingserver-03.eml +70 -0
- data/set-of-emails/maildir/bsd/messagingserver-04.eml +102 -0
- data/set-of-emails/maildir/bsd/messagingserver-05.eml +98 -0
- data/set-of-emails/maildir/bsd/messagingserver-06.eml +101 -0
- data/set-of-emails/maildir/bsd/messagingserver-07.eml +129 -0
- data/set-of-emails/maildir/bsd/mfilter-01.eml +49 -0
- data/set-of-emails/maildir/bsd/mfilter-02.eml +48 -0
- data/set-of-emails/maildir/bsd/mfilter-03.eml +43 -0
- data/set-of-emails/maildir/bsd/mxlogic-01.eml +47 -0
- data/set-of-emails/maildir/bsd/mxlogic-02.eml +44 -0
- data/set-of-emails/maildir/bsd/mxlogic-03.eml +46 -0
- data/set-of-emails/maildir/bsd/notes-01.eml +42 -0
- data/set-of-emails/maildir/bsd/notes-02.eml +42 -0
- data/set-of-emails/maildir/bsd/notes-03.eml +38 -0
- data/set-of-emails/maildir/bsd/notes-04.eml +181 -0
- data/set-of-emails/maildir/bsd/opensmtpd-01.eml +33 -0
- data/set-of-emails/maildir/bsd/opensmtpd-02.eml +33 -0
- data/set-of-emails/maildir/bsd/opensmtpd-03.eml +36 -0
- data/set-of-emails/maildir/bsd/opensmtpd-04.eml +40 -0
- data/set-of-emails/maildir/bsd/opensmtpd-05.eml +36 -0
- data/set-of-emails/maildir/bsd/postfix-01.eml +60 -0
- data/set-of-emails/maildir/bsd/postfix-02.eml +78 -0
- data/set-of-emails/maildir/bsd/postfix-03.eml +71 -0
- data/set-of-emails/maildir/bsd/postfix-04.eml +89 -0
- data/set-of-emails/maildir/bsd/postfix-05.eml +78 -0
- data/set-of-emails/maildir/bsd/postfix-06.eml +72 -0
- data/set-of-emails/maildir/bsd/postfix-07.eml +74 -0
- data/set-of-emails/maildir/bsd/postfix-08.eml +78 -0
- data/set-of-emails/maildir/bsd/postfix-09.eml +76 -0
- data/set-of-emails/maildir/bsd/postfix-10.eml +73 -0
- data/set-of-emails/maildir/bsd/postfix-11.eml +86 -0
- data/set-of-emails/maildir/bsd/postfix-12.eml +71 -0
- data/set-of-emails/maildir/bsd/postfix-13.eml +81 -0
- data/set-of-emails/maildir/bsd/postfix-14.eml +68 -0
- data/set-of-emails/maildir/bsd/postfix-15.eml +69 -0
- data/set-of-emails/maildir/bsd/postfix-16.eml +73 -0
- data/set-of-emails/maildir/bsd/postfix-17.eml +68 -0
- data/set-of-emails/maildir/bsd/postfix-18.eml +121 -0
- data/set-of-emails/maildir/bsd/postfix-19.eml +105 -0
- data/set-of-emails/maildir/bsd/postfix-20.eml +231 -0
- data/set-of-emails/maildir/bsd/postfix-21.eml +60 -0
- data/set-of-emails/maildir/bsd/qmail-01.eml +40 -0
- data/set-of-emails/maildir/bsd/qmail-02.eml +35 -0
- data/set-of-emails/maildir/bsd/qmail-03.eml +22 -0
- data/set-of-emails/maildir/bsd/qmail-04.eml +31 -0
- data/set-of-emails/maildir/bsd/qmail-05.eml +31 -0
- data/set-of-emails/maildir/bsd/qmail-06.eml +39 -0
- data/set-of-emails/maildir/bsd/qmail-07.eml +22 -0
- data/set-of-emails/maildir/bsd/qmail-08.eml +23 -0
- data/set-of-emails/maildir/bsd/qmail-09.eml +103 -0
- data/set-of-emails/maildir/bsd/rfc3464-01.eml +60 -0
- data/set-of-emails/maildir/bsd/rfc3464-02.eml +43 -0
- data/set-of-emails/maildir/bsd/rfc3464-03.eml +40 -0
- data/set-of-emails/maildir/bsd/rfc3464-04.eml +50 -0
- data/set-of-emails/maildir/bsd/rfc3464-05.eml +63 -0
- data/set-of-emails/maildir/bsd/rfc3464-06.eml +48 -0
- data/set-of-emails/maildir/bsd/rfc3464-07.eml +88 -0
- data/set-of-emails/maildir/bsd/rfc3464-08.eml +70 -0
- data/set-of-emails/maildir/bsd/rfc3464-09.eml +93 -0
- data/set-of-emails/maildir/bsd/rfc3464-10.eml +467 -0
- data/set-of-emails/maildir/bsd/rfc3464-11.eml +1171 -0
- data/set-of-emails/maildir/bsd/rfc3464-12.eml +101 -0
- data/set-of-emails/maildir/bsd/rfc3464-13.eml +131 -0
- data/set-of-emails/maildir/bsd/rfc3464-14.eml +121 -0
- data/set-of-emails/maildir/bsd/rfc3464-15.eml +144 -0
- data/set-of-emails/maildir/bsd/rfc3464-16.eml +36 -0
- data/set-of-emails/maildir/bsd/rfc3464-17.eml +109 -0
- data/set-of-emails/maildir/bsd/rfc3464-18.eml +149 -0
- data/set-of-emails/maildir/bsd/rfc3464-19.eml +65 -0
- data/set-of-emails/maildir/bsd/rfc3464-20.eml +145 -0
- data/set-of-emails/maildir/bsd/rfc3464-21.eml +146 -0
- data/set-of-emails/maildir/bsd/rfc3464-22.eml +105 -0
- data/set-of-emails/maildir/bsd/rfc3464-23.eml +21 -0
- data/set-of-emails/maildir/bsd/rfc3464-24.eml +27 -0
- data/set-of-emails/maildir/bsd/rfc3464-25.eml +33 -0
- data/set-of-emails/maildir/bsd/rfc3464-26.eml +98 -0
- data/set-of-emails/maildir/bsd/rfc3464-27.eml +180 -0
- data/set-of-emails/maildir/bsd/rfc3464-28.eml +122 -0
- data/set-of-emails/maildir/bsd/rfc3834-01.eml +37 -0
- data/set-of-emails/maildir/bsd/rfc3834-02.eml +51 -0
- data/set-of-emails/maildir/bsd/rfc3834-03.eml +33 -0
- data/set-of-emails/maildir/bsd/ru-mailru-01.eml +54 -0
- data/set-of-emails/maildir/bsd/ru-mailru-02.eml +54 -0
- data/set-of-emails/maildir/bsd/ru-mailru-03.eml +62 -0
- data/set-of-emails/maildir/bsd/ru-mailru-04.eml +54 -0
- data/set-of-emails/maildir/bsd/ru-yandex-01.eml +102 -0
- data/set-of-emails/maildir/bsd/ru-yandex-02.eml +113 -0
- data/set-of-emails/maildir/bsd/ru-yandex-03.eml +101 -0
- data/set-of-emails/maildir/bsd/sendmail-01.eml +70 -0
- data/set-of-emails/maildir/bsd/sendmail-02.eml +82 -0
- data/set-of-emails/maildir/bsd/sendmail-03.eml +76 -0
- data/set-of-emails/maildir/bsd/sendmail-04.eml +63 -0
- data/set-of-emails/maildir/bsd/sendmail-05.eml +64 -0
- data/set-of-emails/maildir/bsd/sendmail-06.eml +67 -0
- data/set-of-emails/maildir/bsd/sendmail-07.eml +65 -0
- data/set-of-emails/maildir/bsd/sendmail-08.eml +62 -0
- data/set-of-emails/maildir/bsd/sendmail-09.eml +60 -0
- data/set-of-emails/maildir/bsd/sendmail-10.eml +82 -0
- data/set-of-emails/maildir/bsd/sendmail-11.eml +60 -0
- data/set-of-emails/maildir/bsd/sendmail-12.eml +62 -0
- data/set-of-emails/maildir/bsd/sendmail-13.eml +66 -0
- data/set-of-emails/maildir/bsd/sendmail-14.eml +64 -0
- data/set-of-emails/maildir/bsd/sendmail-15.eml +60 -0
- data/set-of-emails/maildir/bsd/sendmail-16.eml +69 -0
- data/set-of-emails/maildir/bsd/sendmail-17.eml +68 -0
- data/set-of-emails/maildir/bsd/sendmail-18.eml +64 -0
- data/set-of-emails/maildir/bsd/sendmail-19.eml +71 -0
- data/set-of-emails/maildir/bsd/sendmail-20.eml +120 -0
- data/set-of-emails/maildir/bsd/sendmail-21.eml +69 -0
- data/set-of-emails/maildir/bsd/sendmail-22.eml +73 -0
- data/set-of-emails/maildir/bsd/sendmail-23.eml +137 -0
- data/set-of-emails/maildir/bsd/sendmail-24.eml +66 -0
- data/set-of-emails/maildir/bsd/sendmail-25.eml +70 -0
- data/set-of-emails/maildir/bsd/sendmail-26.eml +71 -0
- data/set-of-emails/maildir/bsd/sendmail-27.eml +69 -0
- data/set-of-emails/maildir/bsd/sendmail-28.eml +69 -0
- data/set-of-emails/maildir/bsd/sendmail-29.eml +70 -0
- data/set-of-emails/maildir/bsd/sendmail-30.eml +68 -0
- data/set-of-emails/maildir/bsd/sendmail-31.eml +80 -0
- data/set-of-emails/maildir/bsd/sendmail-32.eml +71 -0
- data/set-of-emails/maildir/bsd/sendmail-33.eml +71 -0
- data/set-of-emails/maildir/bsd/sendmail-34.eml +75 -0
- data/set-of-emails/maildir/bsd/sendmail-35.eml +70 -0
- data/set-of-emails/maildir/bsd/sendmail-36.eml +71 -0
- data/set-of-emails/maildir/bsd/sendmail-37.eml +71 -0
- data/set-of-emails/maildir/bsd/sendmail-38.eml +167 -0
- data/set-of-emails/maildir/bsd/surfcontrol-01.eml +79 -0
- data/set-of-emails/maildir/bsd/surfcontrol-02.eml +70 -0
- data/set-of-emails/maildir/bsd/surfcontrol-03.eml +70 -0
- data/set-of-emails/maildir/bsd/uk-messagelabs-01.eml +76 -0
- data/set-of-emails/maildir/bsd/us-amazonses-01.eml +59 -0
- data/set-of-emails/maildir/bsd/us-amazonses-02.eml +177 -0
- data/set-of-emails/maildir/bsd/us-amazonses-03.eml +55 -0
- data/set-of-emails/maildir/bsd/us-amazonses-04.eml +55 -0
- data/set-of-emails/maildir/bsd/us-amazonworkmail-01.eml +156 -0
- data/set-of-emails/maildir/bsd/us-amazonworkmail-02.eml +160 -0
- data/set-of-emails/maildir/bsd/us-amazonworkmail-03.eml +161 -0
- data/set-of-emails/maildir/bsd/us-amazonworkmail-04.eml +156 -0
- data/set-of-emails/maildir/bsd/us-amazonworkmail-05.eml +157 -0
- data/set-of-emails/maildir/bsd/us-aol-01.eml +1258 -0
- data/set-of-emails/maildir/bsd/us-aol-02.eml +1257 -0
- data/set-of-emails/maildir/bsd/us-aol-03.eml +1264 -0
- data/set-of-emails/maildir/bsd/us-aol-04.eml +1260 -0
- data/set-of-emails/maildir/bsd/us-bigfoot-01.eml +64 -0
- data/set-of-emails/maildir/bsd/us-facebook-01.eml +40 -0
- data/set-of-emails/maildir/bsd/us-facebook-02.eml +42 -0
- data/set-of-emails/maildir/bsd/us-google-01.eml +70 -0
- data/set-of-emails/maildir/bsd/us-google-02.eml +50 -0
- data/set-of-emails/maildir/bsd/us-google-03.eml +51 -0
- data/set-of-emails/maildir/bsd/us-google-04.eml +82 -0
- data/set-of-emails/maildir/bsd/us-google-05.eml +50 -0
- data/set-of-emails/maildir/bsd/us-google-06.eml +56 -0
- data/set-of-emails/maildir/bsd/us-google-07.eml +42 -0
- data/set-of-emails/maildir/bsd/us-google-08.eml +59 -0
- data/set-of-emails/maildir/bsd/us-google-09.eml +76 -0
- data/set-of-emails/maildir/bsd/us-google-10.eml +69 -0
- data/set-of-emails/maildir/bsd/us-google-11.eml +68 -0
- data/set-of-emails/maildir/bsd/us-google-12.eml +76 -0
- data/set-of-emails/maildir/bsd/us-google-13.eml +79 -0
- data/set-of-emails/maildir/bsd/us-google-14.eml +304 -0
- data/set-of-emails/maildir/bsd/us-office365-01.eml +102 -0
- data/set-of-emails/maildir/bsd/us-outlook-01.eml +72 -0
- data/set-of-emails/maildir/bsd/us-outlook-02.eml +72 -0
- data/set-of-emails/maildir/bsd/us-outlook-03.eml +72 -0
- data/set-of-emails/maildir/bsd/us-outlook-04.eml +79 -0
- data/set-of-emails/maildir/bsd/us-outlook-05.eml +85 -0
- data/set-of-emails/maildir/bsd/us-outlook-06.eml +75 -0
- data/set-of-emails/maildir/bsd/us-outlook-07.eml +70 -0
- data/set-of-emails/maildir/bsd/us-receivingses-01.eml +74 -0
- data/set-of-emails/maildir/bsd/us-receivingses-02.eml +74 -0
- data/set-of-emails/maildir/bsd/us-receivingses-03.eml +74 -0
- data/set-of-emails/maildir/bsd/us-receivingses-04.eml +74 -0
- data/set-of-emails/maildir/bsd/us-receivingses-05.eml +74 -0
- data/set-of-emails/maildir/bsd/us-receivingses-06.eml +74 -0
- data/set-of-emails/maildir/bsd/us-receivingses-07.eml +74 -0
- data/set-of-emails/maildir/bsd/us-sendgrid-01.eml +95 -0
- data/set-of-emails/maildir/bsd/us-sendgrid-02.eml +98 -0
- data/set-of-emails/maildir/bsd/us-sendgrid-03.eml +100 -0
- data/set-of-emails/maildir/bsd/us-verizon-01.eml +31 -0
- data/set-of-emails/maildir/bsd/us-yahoo-01.eml +78 -0
- data/set-of-emails/maildir/bsd/us-yahoo-02.eml +79 -0
- data/set-of-emails/maildir/bsd/us-yahoo-03.eml +93 -0
- data/set-of-emails/maildir/bsd/us-yahoo-04.eml +94 -0
- data/set-of-emails/maildir/bsd/us-yahoo-05.eml +94 -0
- data/set-of-emails/maildir/bsd/us-zoho-01.eml +40 -0
- data/set-of-emails/maildir/bsd/us-zoho-02.eml +38 -0
- data/set-of-emails/maildir/bsd/us-zoho-03.eml +37 -0
- data/set-of-emails/maildir/bsd/us-zoho-04.eml +47 -0
- data/set-of-emails/maildir/bsd/us-zoho-05.eml +37 -0
- data/set-of-emails/maildir/bsd/v5sendmail-01.eml +24 -0
- data/set-of-emails/maildir/bsd/v5sendmail-02.eml +26 -0
- data/set-of-emails/maildir/bsd/v5sendmail-03.eml +29 -0
- data/set-of-emails/maildir/bsd/v5sendmail-04.eml +29 -0
- data/set-of-emails/maildir/bsd/v5sendmail-05.eml +42 -0
- data/set-of-emails/maildir/bsd/v5sendmail-06.eml +28 -0
- data/set-of-emails/maildir/bsd/v5sendmail-07.eml +35 -0
- data/set-of-emails/maildir/bsd/x1-01.eml +61 -0
- data/set-of-emails/maildir/bsd/x1-02.eml +62 -0
- data/set-of-emails/maildir/bsd/x2-01.eml +41 -0
- data/set-of-emails/maildir/bsd/x2-02.eml +46 -0
- data/set-of-emails/maildir/bsd/x2-03.eml +34 -0
- data/set-of-emails/maildir/bsd/x2-04.eml +0 -0
- data/set-of-emails/maildir/bsd/x2-05.eml +98 -0
- data/set-of-emails/maildir/bsd/x3-01.eml +61 -0
- data/set-of-emails/maildir/bsd/x3-02.eml +64 -0
- data/set-of-emails/maildir/bsd/x3-03.eml +59 -0
- data/set-of-emails/maildir/bsd/x3-04.eml +106 -0
- data/set-of-emails/maildir/bsd/x4-01.eml +92 -0
- data/set-of-emails/maildir/bsd/x4-02.eml +112 -0
- data/set-of-emails/maildir/bsd/x4-03.eml +245 -0
- data/set-of-emails/maildir/bsd/x4-04.eml +81 -0
- data/set-of-emails/maildir/bsd/x4-05.eml +121 -0
- data/set-of-emails/maildir/bsd/x4-06.eml +32 -0
- data/set-of-emails/maildir/bsd/x4-07.eml +153 -0
- data/set-of-emails/maildir/bsd/x5-01.eml +155 -0
- data/set-of-emails/maildir/dos/activehunter-01.eml +54 -0
- data/set-of-emails/maildir/dos/apachejames-01.eml +46 -0
- data/set-of-emails/maildir/dos/arf-01.eml +66 -0
- data/set-of-emails/maildir/dos/courier-01.eml +79 -0
- data/set-of-emails/maildir/dos/de-einsundeins-01.eml +38 -0
- data/set-of-emails/maildir/dos/de-gmx-01.eml +52 -0
- data/set-of-emails/maildir/dos/domino-01.eml +33 -0
- data/set-of-emails/maildir/dos/exchange-01.eml +31 -0
- data/set-of-emails/maildir/dos/exim-01.eml +46 -0
- data/set-of-emails/maildir/dos/google-apps-01.eml +66 -0
- data/set-of-emails/maildir/dos/imailserver-01.eml +27 -0
- data/set-of-emails/maildir/dos/interscanmss-01.eml +49 -0
- data/set-of-emails/maildir/dos/jp-biglobe-01.eml +43 -0
- data/set-of-emails/maildir/dos/jp-ezweb-01.eml +36 -0
- data/set-of-emails/maildir/dos/jp-kddi-01.eml +49 -0
- data/set-of-emails/maildir/dos/mailfoundry-01.eml +50 -0
- data/set-of-emails/maildir/dos/mailmarshalsmtp-01.eml +43 -0
- data/set-of-emails/maildir/dos/mcafee-01.eml +63 -0
- data/set-of-emails/maildir/dos/messagingserver-01.eml +102 -0
- data/set-of-emails/maildir/dos/mfilter-01.eml +49 -0
- data/set-of-emails/maildir/dos/mxlogic-01.eml +47 -0
- data/set-of-emails/maildir/dos/notes-01.eml +42 -0
- data/set-of-emails/maildir/dos/opensmtpd-01.eml +33 -0
- data/set-of-emails/maildir/dos/postfix-01.eml +60 -0
- data/set-of-emails/maildir/dos/qmail-01.eml +40 -0
- data/set-of-emails/maildir/dos/rfc3464-01.eml +59 -0
- data/set-of-emails/maildir/dos/rfc3834-01.eml +37 -0
- data/set-of-emails/maildir/dos/ru-mailru-01.eml +54 -0
- data/set-of-emails/maildir/dos/ru-yandex-01.eml +102 -0
- data/set-of-emails/maildir/dos/sendmail-01.eml +69 -0
- data/set-of-emails/maildir/dos/surfcontrol-01.eml +79 -0
- data/set-of-emails/maildir/dos/uk-messagelabs-01.eml +76 -0
- data/set-of-emails/maildir/dos/us-amazonses-01.eml +59 -0
- data/set-of-emails/maildir/dos/us-aol-01.eml +1258 -0
- data/set-of-emails/maildir/dos/us-bigfoot-01.eml +64 -0
- data/set-of-emails/maildir/dos/us-facebook-01.eml +40 -0
- data/set-of-emails/maildir/dos/us-google-01.eml +70 -0
- data/set-of-emails/maildir/dos/us-outlook-01.eml +72 -0
- data/set-of-emails/maildir/dos/us-receivingses-01.eml +74 -0
- data/set-of-emails/maildir/dos/us-sendgrid-01.eml +95 -0
- data/set-of-emails/maildir/dos/us-verizon-01.eml +31 -0
- data/set-of-emails/maildir/dos/us-yahoo-01.eml +78 -0
- data/set-of-emails/maildir/dos/us-zoho-01.eml +40 -0
- data/set-of-emails/maildir/dos/v5sendmail-01.eml +24 -0
- data/set-of-emails/maildir/dos/x1-01.eml +61 -0
- data/set-of-emails/maildir/dos/x2-01.eml +41 -0
- data/set-of-emails/maildir/dos/x3-01.eml +61 -0
- data/set-of-emails/maildir/dos/x4-01.eml +90 -0
- data/set-of-emails/maildir/dos/x5-01.eml +155 -0
- data/set-of-emails/maildir/err/make-test-01.eml +70 -0
- data/set-of-emails/maildir/err/make-test-02.eml +70 -0
- data/set-of-emails/maildir/err/make-test-03.eml +64 -0
- data/set-of-emails/maildir/err/make-test-04.eml +64 -0
- data/set-of-emails/maildir/err/make-test-05.eml +66 -0
- data/set-of-emails/maildir/err/make-test-06.eml +118 -0
- data/set-of-emails/maildir/err/make-test-07.eml +26 -0
- data/set-of-emails/maildir/err/make-test-08.eml +67 -0
- data/set-of-emails/maildir/err/make-test-09.eml +55 -0
- data/set-of-emails/maildir/err/make-test-10.eml +69 -0
- data/set-of-emails/maildir/err/make-test-11.eml +64 -0
- data/set-of-emails/maildir/err/make-test-12.eml +66 -0
- data/set-of-emails/maildir/err/make-test-13.eml +67 -0
- data/set-of-emails/maildir/err/make-test-14.eml +66 -0
- data/set-of-emails/maildir/err/make-test-15.eml +70 -0
- data/set-of-emails/maildir/err/make-test-16.eml +68 -0
- data/set-of-emails/maildir/err/make-test-17.eml +68 -0
- data/set-of-emails/maildir/err/make-test-18.eml +68 -0
- data/set-of-emails/maildir/err/make-test-19.eml +69 -0
- data/set-of-emails/maildir/err/make-test-20.eml +67 -0
- data/set-of-emails/maildir/err/make-test-21.eml +69 -0
- data/set-of-emails/maildir/err/make-test-22.eml +66 -0
- data/set-of-emails/maildir/err/make-test-23.eml +70 -0
- data/set-of-emails/maildir/err/make-test-24.eml +69 -0
- data/set-of-emails/maildir/err/make-test-25.eml +67 -0
- data/set-of-emails/maildir/err/make-test-26.eml +69 -0
- data/set-of-emails/maildir/err/make-test-27.eml +69 -0
- data/set-of-emails/maildir/err/make-test-28.eml +66 -0
- data/set-of-emails/maildir/err/make-test-29.eml +68 -0
- data/set-of-emails/maildir/err/make-test-30.eml +68 -0
- data/set-of-emails/maildir/err/make-test-31.eml +80 -0
- data/set-of-emails/maildir/err/make-test-32.eml +66 -0
- data/set-of-emails/maildir/err/make-test-33.eml +68 -0
- data/set-of-emails/maildir/err/make-test-34.eml +56 -0
- data/set-of-emails/maildir/err/make-test-35.eml +59 -0
- data/set-of-emails/maildir/err/make-test-36.eml +53 -0
- data/set-of-emails/maildir/err/make-test-37.eml +62 -0
- data/set-of-emails/maildir/mac/activehunter-01.eml +1 -2
- data/set-of-emails/maildir/mac/apachejames-01.eml +1 -4
- data/set-of-emails/maildir/mac/arf-01.eml +1 -3
- data/set-of-emails/maildir/mac/courier-01.eml +1 -6
- data/set-of-emails/maildir/mac/de-einsundeins-01.eml +1 -1
- data/set-of-emails/maildir/mac/de-gmx-01.eml +1 -1
- data/set-of-emails/maildir/mac/domino-01.eml +1 -0
- data/set-of-emails/maildir/mac/exchange-01.eml +1 -0
- data/set-of-emails/maildir/mac/exim-01.eml +1 -1
- data/set-of-emails/maildir/mac/google-apps-01.eml +1 -4
- data/set-of-emails/maildir/mac/imailserver-01.eml +1 -0
- data/set-of-emails/maildir/mac/interscanmss-01.eml +1 -2
- data/set-of-emails/maildir/mac/jp-biglobe-01.eml +1 -2
- data/set-of-emails/maildir/mac/jp-ezweb-01.eml +1 -1
- data/set-of-emails/maildir/mac/jp-kddi-01.eml +1 -2
- data/set-of-emails/maildir/mac/mailfoundry-01.eml +1 -2
- data/set-of-emails/maildir/mac/mailmarshalsmtp-01.eml +1 -2
- data/set-of-emails/maildir/mac/mcafee-01.eml +1 -4
- data/set-of-emails/maildir/mac/messagingserver-01.eml +1 -4
- data/set-of-emails/maildir/mac/mfilter-01.eml +1 -3
- data/set-of-emails/maildir/mac/mxlogic-01.eml +1 -1
- data/set-of-emails/maildir/mac/notes-01.eml +1 -2
- data/set-of-emails/maildir/mac/opensmtpd-01.eml +1 -0
- data/set-of-emails/maildir/mac/postfix-01.eml +1 -3
- data/set-of-emails/maildir/mac/qmail-01.eml +1 -1
- data/set-of-emails/maildir/mac/rfc3464-01.eml +1 -4
- data/set-of-emails/maildir/mac/rfc3834-01.eml +1 -0
- data/set-of-emails/maildir/mac/ru-mailru-01.eml +1 -1
- data/set-of-emails/maildir/mac/ru-yandex-01.eml +1 -4
- data/set-of-emails/maildir/mac/sendmail-01.eml +1 -4
- data/set-of-emails/maildir/mac/surfcontrol-01.eml +1 -5
- data/set-of-emails/maildir/mac/uk-messagelabs-01.eml +1 -4
- data/set-of-emails/maildir/mac/us-amazonses-01.eml +1 -4
- data/set-of-emails/maildir/mac/us-aol-01.eml +1 -15
- data/set-of-emails/maildir/mac/us-bigfoot-01.eml +1 -4
- data/set-of-emails/maildir/mac/us-facebook-01.eml +1 -4
- data/set-of-emails/maildir/mac/us-google-01.eml +1 -1
- data/set-of-emails/maildir/mac/us-outlook-01.eml +1 -4
- data/set-of-emails/maildir/mac/us-receivingses-01.eml +1 -4
- data/set-of-emails/maildir/mac/us-sendgrid-01.eml +1 -3
- data/set-of-emails/maildir/mac/us-verizon-01.eml +1 -2
- data/set-of-emails/maildir/mac/us-yahoo-01.eml +1 -1
- data/set-of-emails/maildir/mac/us-zoho-01.eml +1 -2
- data/set-of-emails/maildir/mac/v5sendmail-01.eml +1 -0
- data/set-of-emails/maildir/mac/x1-01.eml +1 -4
- data/set-of-emails/maildir/mac/x2-01.eml +1 -1
- data/set-of-emails/maildir/mac/x3-01.eml +1 -3
- data/set-of-emails/maildir/mac/x4-01.eml +1 -2
- data/set-of-emails/maildir/mac/x5-01.eml +1 -8
- data/set-of-emails/maildir/not/is-not-bounce-01.eml +25 -0
- data/set-of-emails/to-be-debugged-because/reason-is-onhold/onhold-0001.eml +85 -0
- data/set-of-emails/to-be-debugged-because/reason-is-undefined/undefined-0002.eml +27 -0
- data/set-of-emails/to-be-debugged-because/reason-is-undefined/undefined-0003.eml +78 -0
- data/set-of-emails/to-be-debugged-because/sisimai-cannot-parse-yet/cannot-parse-this-email-0002.eml +25 -0
- data/set-of-emails/to-be-debugged-because/something-is-wrong/issue-106-01.eml +79 -0
- data/set-of-emails/to-be-debugged-because/something-is-wrong/issue-106-02.eml +72 -0
- data/set-of-emails/to-be-debugged-because/something-is-wrong/issue-106-03.eml +68 -0
- data/set-of-emails/to-be-debugged-because/something-is-wrong/no-message-id-from-pr-150.eml +75 -0
- data/set-of-emails/to-be-parsed-for-test/README.md +20 -0
- data/sisimai-java.gemspec +29 -0
- data/sisimai.gemspec +28 -0
- metadata +680 -0
@@ -0,0 +1,1171 @@
|
|
1
|
+
Content-Type: multipart/report; report-type=delivery-status;
|
2
|
+
boundary="----------=_1395189126-24245-767319"
|
3
|
+
Content-Transfer-Encoding: binary
|
4
|
+
MIME-Version: 1.0
|
5
|
+
X-Mailer: MIME-tools 5.504 (Entity 5.504)
|
6
|
+
From: MAILER-DAEMON
|
7
|
+
To: foobar@moneyliving.pgoamedia.com
|
8
|
+
Subject: Undelivered Mail Returned to Sender
|
9
|
+
|
10
|
+
This is a multi-part message in MIME format...
|
11
|
+
|
12
|
+
------------=_1395189126-24245-767319
|
13
|
+
Content-Type: text/plain
|
14
|
+
Content-Disposition: inline
|
15
|
+
Content-Transfer-Encoding: 7bit
|
16
|
+
Content-Description: Notification
|
17
|
+
|
18
|
+
This is an automatically generated message from SendGrid.
|
19
|
+
|
20
|
+
I'm sorry to have to tell you that your message was not able to be
|
21
|
+
delivered to one of its intended recipients.
|
22
|
+
|
23
|
+
If you require assistance with this, please contact SendGrid support.
|
24
|
+
|
25
|
+
pgoa-moneyliving:884638:<foobar@comcast.net> : 192.254.113.140 : mx2.comcast.net:[76.96.40.147] : 554 imta14.emeryville.ca.mail.comcast.net comcast 192.254.113.140 Comcast block for spam. Please see http://postmaster.comcast.net/smtp-error-codes.php#BL000000 in Handshake
|
26
|
+
|
27
|
+
------------=_1395189126-24245-767319
|
28
|
+
Content-Type: message/delivery-status
|
29
|
+
Content-Disposition: inline
|
30
|
+
Content-Transfer-Encoding: 7bit
|
31
|
+
Content-Description: Delivery Report
|
32
|
+
|
33
|
+
X-SendGrid-QueueID: 154695696
|
34
|
+
X-SendGrid-Sender: <bounces+884638-8598-foobar@moneyliving.pgoamedia.com>
|
35
|
+
Arrival-Date: 2014-03-19 00-32-06
|
36
|
+
|
37
|
+
Final-Recipient: rfc822; foobar@comcast.net
|
38
|
+
Original-Recipient: rfc822; foobar@comcast.net
|
39
|
+
Action: failed
|
40
|
+
Status:
|
41
|
+
Diagnostic-Code: 554 imta14.emeryville.ca.mail.comcast.net comcast 192.254.113.140 Comcast block for spam. Please see http://postmaster.comcast.net/smtp-error-codes.php#BL000000
|
42
|
+
|
43
|
+
------------=_1395189126-24245-767319
|
44
|
+
Content-Type: message/rfc822; name="154695696"
|
45
|
+
Content-Disposition: inline; filename="154695696"
|
46
|
+
Content-Transfer-Encoding: binary
|
47
|
+
Content-Description: Undelivered Message
|
48
|
+
|
49
|
+
DKIM-Signature: v=1; a=rsa-sha1; c=relaxed;
|
50
|
+
d=moneyliving.pgoamedia.com;
|
51
|
+
h=content-type:mime-version:from:to:reply-to:subject:list-unsubscribe;
|
52
|
+
s=smtpapi; bh=UHZfdnS75cU30Jx7dP/ldLieTck=; b=Iwa1J1ZIfJL9T4pneL
|
53
|
+
HcqBFUPUHQaF2bQ5FFpyiDtGS4gVHNDErw/pTxXC0B/5fW1UlKOAJcxf45wAfcY/
|
54
|
+
9KGoazCRfG7LOhb6ShLPwrAXXxY/z+y8/eFNHsWBYDOcIZXFuEoumsUV9sy/+t8O
|
55
|
+
RqxwU7sHFdoU5QmIidy8dH0Lo=
|
56
|
+
DomainKey-Signature: a=rsa-sha1; c=nofws;
|
57
|
+
d=moneyliving.pgoamedia.com;
|
58
|
+
h=content-type:mime-version:from:to:reply-to:subject:list-unsubscribe;
|
59
|
+
q=dns; s=smtpapi; b=n+JM+HVAWeSsCglXZPVflHvBdpIq8PBPzX2evco0zuCg
|
60
|
+
ihmB44G1HY7ibhKdofpIEc5W/dICxwGq0Js1T7MrQ8IvlMpZ4gstj8UV/xdop4yy
|
61
|
+
ds7f2+RxKvg/BYVi9akiS3Lwil1U+cCwaIbqvsP3oTH8WY3yCxs5h1rXQAS4hLk=
|
62
|
+
Received: by filter-151.sjc1.sendgrid.net with SMTP id filter-151.21331.5328E584A
|
63
|
+
Wed, 19 Mar 2014 00:32:04 +0000 (UTC)
|
64
|
+
Received: from ODg0NjM4 (unknown [10.42.83.122])
|
65
|
+
by localhost.localdomain (SG) with HTTP id 144d7c08eeb.132e5.d673f3
|
66
|
+
for <foobar@moneyliving.pgoamedia.com>; Wed, 19 Mar 2014 00:32:04 +0000 (GMT)
|
67
|
+
Content-Type: multipart/alternative;
|
68
|
+
boundary="===============0915156192462505999=="
|
69
|
+
MIME-Version: 1.0
|
70
|
+
From: "SmartyCents.com \(Formerly Money Living\)"
|
71
|
+
<foobar@moneyliving.pgoamedia.com>
|
72
|
+
To: foobar@comcast.net
|
73
|
+
Reply-To: foobar@moneyliving.pgoamedia.com
|
74
|
+
Subject: Tax Season Continues + Tackling Wedding Expenses
|
75
|
+
Message-ID: <144d7c08eeb.132e5.d673f3@localhost.localdomain>
|
76
|
+
Date: Wed, 19 Mar 2014 00:32:04 +0000 (UTC)
|
77
|
+
List-Unsubscribe: <http://moneyliving.pgoamedia.com/wf/unsubscribe?upn=1-2B2i4NJ0yu0cCUcR-2FYNSSe7yGzeiS38odIme2gGGUgSK9HUk8EiAqsw9omFQqnB3J7xmuonE779rHGJkqhlp4YZxVv21HsORmlYU-2FmdlfzjSXbnSvff50QhAU5zyZZxQxwS-2FJJDhQO-2FYrWOqGzn3gWbbSj-2Bq2Wbqzks4yA4XMZzWw3-2FWeZIMqUS4qoJJcl3EUkuU1D-2B9iVCBcbevDufWTgVcK99quJbebyXqmx6WVxU4PwF8kXOkFdHVqRqWlYYKMDTPYgkE7KB8G8m2-2Bja0vx8V0f2kn5Smfn6qV42s47C0tb-2FvRZmMTszNruIxDvdSQ0Qrot80Jru2buWWn3HGl45zo3-2B82rfRpF54LTxq9Ezymk5HLiv2qlXpcZs0JbNT4vZLRgIJK5-2BVb6RMeVHe9A-3D-3D>, <mailto:foobar@moneyliving.pgoamedia.com?subject=http://moneyliving.pgoamedia.com/wf/unsubscribe*q*upn=1-2B2i4NJ0yu0cCUcR-2FYNSSe7yGzeiS38odIme2gGGUgSK9HUk8EiAqsw9omFQqnB3J7xmuonE779rHGJkqhlp4YZxVv21HsORmlYU-2FmdlfzjSXbnSvff50QhAU5zyZZxQxwS-2FJJDhQO-2FYrWOqGzn3gWbbSj-2Bq2Wbqzks4yA4XMZzWw3-2FWeZIMqUS4qoJJcl3EUkuU1D-2B9iVCBcbevDufWTgVcK99quJbebyXqmx6WVxU4PwF8kXOkFdHVqRqWlYYKMDTPYgkE7KB8G8m2-2Bja0vx8V0f2kn5Smfn6qV42s47C0tb-2FvRZmMTszNruIxDvdSQ0Qrot80Jru2buWWn3HGl45zo3-2B82rfRpF54LTxq9Ezymk5HLiv2qlXpcZs0JbNT4vZLRgIJK5-2BVb6RMeVHe9A-3D-3D>
|
78
|
+
X-SendGrid-Contentd-ID: {"test_id":"1395189125"}
|
79
|
+
X-SG-EID: waGEhkpZxV8IH7ICWJsN3/WIqYFZkCvD8951tFpbdJM+yztND7TGPYpxz0C+Qp46PwFhVrrGCsoHZm+GiwgdlxMqpBys+LM2O0VH+VLREbILQLRXmpZI5ImeoC7/a8CFV7xW+roUITdlXyGlQ5SXmp4vwXimGB7a4VpUfeTXHUY=
|
80
|
+
X-SG-ID: VPWZYjw6GOzHdwkwPeoX9QiEbzQXX/gF9P8njHP5+LDKR9nTCP6NLyuQ3np/dg8VGo0rUlgFbj26jJOsaIloLfVdJo0/gbQMpuqk09CJW1qe/aN8R2juRKKP/HB2foAZtaKjGVkcp3+ODP80BcOlXg7ki70h0i5s8UDZqGtMNmYNcrBr9xGbYVz0w5FGKRXs
|
81
|
+
|
82
|
+
--===============0915156192462505999==
|
83
|
+
Content-Type: text/plain; charset="utf-8"
|
84
|
+
MIME-Version: 1.0
|
85
|
+
Content-Transfer-Encoding: quoted-printable
|
86
|
+
|
87
|
+
Don't see images? Go here ( %%webversion%% ) to read this email as a webpag=
|
88
|
+
e. ( # )Newsletter ( http://smartycents.com/article/expenses-for-=
|
89
|
+
wedding/ ) Be Our Guest ( http://smartycents.com/article/expenses-for-wed=
|
90
|
+
ding/ )=C2=A0=C2=A0So, you=E2=80=99re invited to a wedding. Finance expert =
|
91
|
+
Pete the Planner shares tips for being a gracious guest=E2=80=94without blo=
|
92
|
+
wing your savings.How to Tackle the Expense of Attending a Wedding ( http:/=
|
93
|
+
/smartycents.com/article/expenses-for-wedding/ )How to Give Without Breakin=
|
94
|
+
g the Bank ( http://smartycents.com/article/gift-giving-on-a-budget/ )10 Bu=
|
95
|
+
y One, Give One Companies Worth Supporting ( http://smartycents.com/article=
|
96
|
+
/10-one-for-one-companies/ ) =
|
97
|
+
=C2=A0 ( http:=
|
98
|
+
//www.anrdoezrs.net/click-7410754-11716531 ) Advertisement
|
99
|
+
=
|
100
|
+
it's tax time! ( http://smartycents.com/article/maximize-t=
|
101
|
+
ax-return-2013/ ) Expert Tax-Filing Tips ( http://smartycents.com/article/m=
|
102
|
+
aximize-tax-return-2013/ )The tax experts at H&R Block share essential tax =
|
103
|
+
tips for DIY filers=E2=80=94plus a list of common filing mistakes that coul=
|
104
|
+
d be costing you money.Maximize Your Return ( http://smartycents.com/articl=
|
105
|
+
e/maximize-tax-return-2013/ ) all that glitters ( http://smartycents.co=
|
106
|
+
m/article/invest-gold-silver/ ) Should You Invest in a Pot of Gold? ( http:=
|
107
|
+
//smartycents.com/article/invest-gold-silver/ )=C2=A0=C2=A0Consider the ben=
|
108
|
+
efits and drawbacks associated with the yellow brick road=E2=80=94and how t=
|
109
|
+
o get started investing in precious metals.Going for Gold ( http://smartyce=
|
110
|
+
nts.com/article/invest-gold-silver/ )expert Q&A ( http://smartycents.com/a=
|
111
|
+
rticle/expert-tax-shelters/ ) What to Know About Tax Shelters ( http://smar=
|
112
|
+
tycents.com/article/expert-tax-shelters/ )=C2=A0=C2=A0Explore different typ=
|
113
|
+
es of tax shelters, and consider which type of shelter could benefit you th=
|
114
|
+
e most.Ask an Expert ( http://smartycents.com/article/expert-tax-shelters/ =
|
115
|
+
) the bottom line ( http://smartycents.com/article/how-to-negotiate-lower-=
|
116
|
+
prices/ ) How to Negotiate Prices on Almost Anything ( http://smartycents.c=
|
117
|
+
om/article/how-to-negotiate-lower-prices/ )=C2=A0=C2=A0Unexpected areas whe=
|
118
|
+
re the bottom line is up for negotiation, plus tips for making your best ca=
|
119
|
+
se for a mark-down.Haggle This! ( http://smartycents.com/article/how-to-neg=
|
120
|
+
otiate-lower-prices/ ) ( http://www.facebook.com/moneyliving ) ( http=
|
121
|
+
s://twitter.com/Money_Living ) ( http://pinterest.com/moneyliving/ ) Un=
|
122
|
+
subscribe ( http://moneyliving.pgoamedia.com/wf/unsubscribe?upn=3D1-2B2i4NJ=
|
123
|
+
0yu0cCUcR-2FYNSSe7yGzeiS38odIme2gGGUgSK9HUk8EiAqsw9omFQqnB3J7xmuonE779rHGJk=
|
124
|
+
qhlp4bofAeYxLOaGktjxL0ND2lr67olLT-2FRuJvOUnimGi0IwiJq11OZqz1TYLPi-2BTgpo-2F=
|
125
|
+
ON5ABFUZs372gdqAVIVvXww8Dcv6FBm2RJJH8JmRheNSsSK3UmCqBT33-2BKhoFswuyNqRE1xjh=
|
126
|
+
Yc2oozGkIbVmmo3jH-2BHsXToynrSRpLuSGDTm6HHHhC6qCL-2FEOhpJ5i1wpLf3CD5ZejMV2ep=
|
127
|
+
yFvUU9ufnCik40BPaA6zTmIwF-2B1JeH-2FNST22B93kpQOupfjIC0iaoRE30Y2RhF-2BC-2BAN=
|
128
|
+
VmKtS5QkVHFg9yu4rycHKl58s2-2Bz2tJiXwoL37s6CwNHoQ-3D-3D )=C2=A0=E2=80=A2=C2=
|
129
|
+
=A0 Privacy Policy ( http://moneyliving.com/privacy-guidelines/ )=C2=A0=E2=
|
130
|
+
=80=A2=C2=A0 Visitor Agreement ( http://moneyliving.com/terms-of-service/ )
|
131
|
+
This email was sent to %%emailaddress%%.=20
|
132
|
+
Copyright =C2=A92013 PGOA Media. 341 Cool Springs Blvd. Suite 400, Frankli=
|
133
|
+
n, TN 37067. All Rights Reserved=
|
134
|
+
|
135
|
+
--===============0915156192462505999==
|
136
|
+
Content-Type: text/html; charset="utf-8"
|
137
|
+
MIME-Version: 1.0
|
138
|
+
Content-Transfer-Encoding: quoted-printable
|
139
|
+
|
140
|
+
<html><head></head><body><meta http-equiv=3D"Content-Type" content=3D"text/=
|
141
|
+
html; charset=3DUTF-8" />
|
142
|
+
<title>MoneyLiving.com Weekly Newsletter</title>
|
143
|
+
<!-- Subject Lines Version A: Version B: Version C: Version D: -->=
|
144
|
+
=20
|
145
|
+
<meta name=3D"viewport" content=3D"width=3Ddevice-width" />
|
146
|
+
<style type=3D"text/css"><!--
|
147
|
+
table {
|
148
|
+
border-collapse: collapse;
|
149
|
+
}
|
150
|
+
@media only screen and (max-device-width: 480px) {
|
151
|
+
table#width-320px:not(.om-views-messagepane) {
|
152
|
+
width: 320px !important;
|
153
|
+
align: center !important;
|
154
|
+
}
|
155
|
+
img#width-320px:not(.om-views-messagepane) {
|
156
|
+
width: 320px !important;
|
157
|
+
align: center !important;
|
158
|
+
}
|
159
|
+
table#width-300px:not(.om-views-messagepane) {
|
160
|
+
width: 300px !important;
|
161
|
+
align: center !important;
|
162
|
+
}
|
163
|
+
table#width-292px:not(.om-views-messagepane) {
|
164
|
+
width: 292px !important;
|
165
|
+
align: center !important;
|
166
|
+
clear: left;
|
167
|
+
margin-top: 10px;
|
168
|
+
}
|
169
|
+
table#width-266px:not(.om-views-messagepane) {
|
170
|
+
width: 266px !important;
|
171
|
+
align: center !important;
|
172
|
+
}
|
173
|
+
table#width-231px:not(.om-views-messagepane) {
|
174
|
+
width: 238px !important;
|
175
|
+
}
|
176
|
+
table#width-200px:not(.om-views-messagepane) {
|
177
|
+
width: 200px !important;
|
178
|
+
}
|
179
|
+
table#width-100px:not(.om-views-messagepane) {
|
180
|
+
width: 100px !important;
|
181
|
+
height: 68px !important;
|
182
|
+
}
|
183
|
+
table#width-161px:not(.om-views-messagepane) {
|
184
|
+
width: 161px !important;
|
185
|
+
}
|
186
|
+
table#width-151px:not(.om-views-messagepane) {
|
187
|
+
width: 151px !important;
|
188
|
+
align: center !important;
|
189
|
+
clear: left;
|
190
|
+
margin-top: 10px;
|
191
|
+
}
|
192
|
+
td#width-50px:not(.om-views-messagepane) {
|
193
|
+
width: 70px !important;
|
194
|
+
}
|
195
|
+
#img-292px:not(.om-views-messagepane) {
|
196
|
+
width: 292px !important;
|
197
|
+
height: 219px !important;
|
198
|
+
}
|
199
|
+
#img-266px:not(.om-views-messagepane) {
|
200
|
+
width: 266px !important;
|
201
|
+
height: 200px !important;
|
202
|
+
}
|
203
|
+
#img-100px:not(.om-views-messagepane) {
|
204
|
+
width: 100px !important;
|
205
|
+
height: 68px !important;
|
206
|
+
}
|
207
|
+
#img-46px:not(.om-views-messagepane) {
|
208
|
+
width: 46px !important;
|
209
|
+
height: 34px !important;
|
210
|
+
}
|
211
|
+
#img-42px:not(.om-views-messagepane) {
|
212
|
+
width: 151px !important;
|
213
|
+
height: 42px !important;
|
214
|
+
}
|
215
|
+
#img-59px:not(.om-views-messagepane) {
|
216
|
+
width: 62px !important;
|
217
|
+
height: 34px !important;
|
218
|
+
}
|
219
|
+
#img-85px:not(.om-views-messagepane) {
|
220
|
+
width: 82px !important;
|
221
|
+
height: 34px !important;
|
222
|
+
}
|
223
|
+
#img-82px:not(.om-views-messagepane) {
|
224
|
+
width: 80px !important;
|
225
|
+
height: 34px !important;
|
226
|
+
}
|
227
|
+
#display-none:not(.om-views-messagepane) {
|
228
|
+
display: none !important;
|
229
|
+
}
|
230
|
+
#margintop-15px:not(.om-views-messagepane) {
|
231
|
+
margin-top: 15px !important;
|
232
|
+
}
|
233
|
+
#marginbottom-15px:not(.om-views-messagepane) {
|
234
|
+
margin-bottom: 15px !important;
|
235
|
+
}
|
236
|
+
#marginbottom-10px:not(.om-views-messagepane) {
|
237
|
+
margin-bottom: 10px !important;
|
238
|
+
}
|
239
|
+
#paddingleft-85px:not(.om-views-messagepane) {
|
240
|
+
padding-left: 85px !important;
|
241
|
+
}
|
242
|
+
#paddingleft-5px:not(.om-views-messagepane) {
|
243
|
+
padding-left: 5px !important;
|
244
|
+
}
|
245
|
+
#paddingleft-14px:not(.om-views-messagepane) {
|
246
|
+
padding-left: 14px !important;
|
247
|
+
}
|
248
|
+
#align-center:not(.om-views-messagepane) {
|
249
|
+
align: center !important;
|
250
|
+
}
|
251
|
+
#align-left:not(.om-views-messagepane) {
|
252
|
+
align: left !important;
|
253
|
+
}
|
254
|
+
#align-right:not(.om-views-messagepane) {
|
255
|
+
align: right !important;
|
256
|
+
}
|
257
|
+
#clear-left:not(.om-views-messagepane) {
|
258
|
+
clear: left;
|
259
|
+
margin-top: 10px;
|
260
|
+
}
|
261
|
+
#mobilehide:not(.om-views-messagepane) {
|
262
|
+
display: none !important;
|
263
|
+
visibility:hidden !important;
|
264
|
+
}
|
265
|
+
#mobile_ad_show {
|
266
|
+
display: block !important;
|
267
|
+
}
|
268
|
+
#font14:not(.om-views-messagepane) {
|
269
|
+
font-size:14px !important;
|
270
|
+
}
|
271
|
+
}
|
272
|
+
#font20:not(.om-views-messagepane) {
|
273
|
+
font-size:14px !important;
|
274
|
+
}
|
275
|
+
#logo75:not(.om-views-messagepane) {
|
276
|
+
width: 136px !important;
|
277
|
+
height: 42px !important;
|
278
|
+
}
|
279
|
+
#logo50:not(.om-views-messagepane) {
|
280
|
+
width: 91px !important;
|
281
|
+
height: 28px !important;
|
282
|
+
}
|
283
|
+
#logo60:not(.om-views-messagepane) {
|
284
|
+
width: 109px !important;
|
285
|
+
height: 34px !important;
|
286
|
+
}
|
287
|
+
#padding14px:not(.om-views-messagepane) {
|
288
|
+
padding-left:14px !important;
|
289
|
+
}
|
290
|
+
}
|
291
|
+
div,
|
292
|
+
p,
|
293
|
+
a,
|
294
|
+
li,
|
295
|
+
td {
|
296
|
+
-webkit-text-size-adjust: none;
|
297
|
+
}
|
298
|
+
--></style>
|
299
|
+
<center> <!-- PRE HEADER -->=20
|
300
|
+
<table id=3D"width-320px" width=3D"100%" height=3D"50" align=3D"center" cel=
|
301
|
+
lpadding=3D"0" cellspacing=3D"0">
|
302
|
+
<tbody>
|
303
|
+
<tr style=3D"font-family: Helvetica, Arial, sans-serif; font-size: 11px; co=
|
304
|
+
lor: #484744; margin: 0;">
|
305
|
+
<td height=3D"50" style=3D"font-family: Helvetica, Arial, sans-serif; font-=
|
306
|
+
size: 11px; text-align: center; color: #484744; margin: 0; background-color=
|
307
|
+
: #f7f7f7; padding: 0 10px;">Don't see images? Go <a href=3D"%%webversion%%=
|
308
|
+
" style=3D"font-family: Helvetica, Arial, sans-serif; font-size: 11px; colo=
|
309
|
+
r: #a8c500; text-decoration: none;" linkname=3D"View In Browser">here</a> t=
|
310
|
+
o read this email as a webpage.</td>
|
311
|
+
</tr>
|
312
|
+
</tbody>
|
313
|
+
</table>
|
314
|
+
<!-- END OF PRE HEADER --> <!-- LOGO -->=20
|
315
|
+
<table id=3D"width-320px" width=3D"644" align=3D"center" cellpadding=3D"0" =
|
316
|
+
cellspacing=3D"0">
|
317
|
+
<tbody>
|
318
|
+
<tr>
|
319
|
+
<td colspan=3D"3"><img width=3D"1" height=3D"7" src=3D"http://pgoamedia.com=
|
320
|
+
/wp-content/uploads/2013/08/spacer.gif" style=3D"display: block;" /></td>
|
321
|
+
</tr>
|
322
|
+
<tr style=3D"font-family: Helvetica, Arial, sans-serif; font-size: 11px; co=
|
323
|
+
lor: #484744; margin: 0;">
|
324
|
+
<td width=3D"14"><img width=3D"14" height=3D"1" src=3D"http://pgoamedia.com=
|
325
|
+
/wp-content/uploads/2013/08/spacer.gif" style=3D"display: block;" /></td>
|
326
|
+
<td style=3D"font-family: Helvetica, Arial, sans-serif; font-size: 14px; co=
|
327
|
+
lor: #484744; margin: 0;" align=3D"center"><a style=3D"font-family: Helveti=
|
328
|
+
ca, Arial, sans-serif; font-size: 11px; color: #a8c500; text-decoration: no=
|
329
|
+
ne;" href=3D"#" linkname=3D"Relish.com Logo"><img title=3D"ap-logo-300w.gif=
|
330
|
+
" src=3D"http://cdn.smartycents.com/wp-content/uploads/2014/02/smarty-cents=
|
331
|
+
-logo-color.png" alt=3D"ap-logo-300w.gif" border=3D"0" style=3D"border: 0; =
|
332
|
+
text-align: center;" align=3D"left" width=3D"201" height=3D"56" id=3D"img-4=
|
333
|
+
2px" /></a></td>
|
334
|
+
<td valign=3D"bottom" style=3D"font-family: Helvetica, Arial, sans-serif; f=
|
335
|
+
ont-size: 20px; color: #484744; margin: 0; text-align: right;"><span style=
|
336
|
+
=3D"padding: 0; text-align: right; vertical-align: bottom; text-transform: =
|
337
|
+
uppercase; font-size: 20px;" id=3D"font20">Newsletter</span></td>
|
338
|
+
<td width=3D"14"><img width=3D"14" height=3D"1" src=3D"http://pgoamedia.com=
|
339
|
+
/wp-content/uploads/2013/08/spacer.gif" style=3D"display: block;" /></td>
|
340
|
+
</tr>
|
341
|
+
</tbody>
|
342
|
+
</table>
|
343
|
+
<!-- /LOGO --> <!-- Line Break -->=20
|
344
|
+
<table id=3D"width-320px" width=3D"644" align=3D"center" cellpadding=3D"0" =
|
345
|
+
cellspacing=3D"0">
|
346
|
+
<tbody>
|
347
|
+
<tr>
|
348
|
+
<td><img width=3D"1" height=3D"7" src=3D"http://pgoamedia.com/wp-content/up=
|
349
|
+
loads/2013/08/spacer.gif" style=3D"display: block;" /></td>
|
350
|
+
</tr>
|
351
|
+
<tr style=3D"font-family: Helvetica, Arial, sans-serif; font-size: 20px; co=
|
352
|
+
lor: #a8c500; margin: 0;">
|
353
|
+
<td style=3D"font-family: Helvetica, Arial, sans-serif; font-size: 20px; te=
|
354
|
+
xt-align: center; color: #a8c500; margin: 0;"><img src=3D"http://pgoamedia.=
|
355
|
+
com/wp-content/uploads/2013/08/ml-divider.gif" alt=3D"Line break" id=3D"wid=
|
356
|
+
th-320px" style=3D"display: block;" /></td>
|
357
|
+
</tr>
|
358
|
+
<tr>
|
359
|
+
<td><img width=3D"1" height=3D"14" src=3D"http://pgoamedia.com/wp-content/u=
|
360
|
+
ploads/2013/08/spacer.gif" style=3D"display: block;" /></td>
|
361
|
+
</tr>
|
362
|
+
</tbody>
|
363
|
+
</table>
|
364
|
+
<!-- /Line Break --> <!-- main wrapper -->=20
|
365
|
+
<table width=3D"644" id=3D"width-320px" align=3D"center" cellpadding=3D"0" =
|
366
|
+
cellspacing=3D"0">
|
367
|
+
<tbody>
|
368
|
+
<tr>
|
369
|
+
<td><!-- Feature -->=20
|
370
|
+
<table width=3D"644" id=3D"width-320px" align=3D"center" cellpadding=3D"0" =
|
371
|
+
cellspacing=3D"0">
|
372
|
+
<tbody>
|
373
|
+
<tr>
|
374
|
+
<td><!--feat img -->=20
|
375
|
+
<table width=3D"414" align=3D"left" style=3D"font-family: Helvetica, Arial,=
|
376
|
+
sans-serif; font-size: 14px; color: #000; margin: 0;" cellpadding=3D"0" ce=
|
377
|
+
llspacing=3D"0" id=3D"width-320px">
|
378
|
+
<tbody>
|
379
|
+
<tr>
|
380
|
+
<td width=3D"14"><img width=3D"14" height=3D"1" src=3D"http://pgoamedia.com=
|
381
|
+
/wp-content/uploads/2013/08/spacer.gif" style=3D"display: block;" /></td>
|
382
|
+
<td><!-- if feat landing url is filled in --> <a style=3D"font-family: Helv=
|
383
|
+
etica, Arial, sans-serif; font-size: 14px; color: #a8c500; text-decoration:=
|
384
|
+
none;" target=3D"_blank" href=3D"http://moneyliving.pgoamedia.com/wf/click=
|
385
|
+
?upn=3D0OmjnBxG7LxFBM0VftFjmadCZEzWlfXJDKJVxidGt3qNK6tMiMNiOK8OOhjXc5jh2nNo=
|
386
|
+
nV4UyeQVq2wknVx5mg-3D-3D_1-2B2i4NJ0yu0cCUcR-2FYNSSe7yGzeiS38odIme2gGGUgSK9H=
|
387
|
+
Uk8EiAqsw9omFQqnB3J7xmuonE779rHGJkqhlp4UJmwBFQAgCqNIiSIn3u2c6bH0oCdZvGto1DZ=
|
388
|
+
RgFV2yo09BcdsegYQ1izC8A8FGgtf71N7BENPBAHUSEizypIu0mmEL1durJh5Ilr8QNmLTk8hRk=
|
389
|
+
649Z8t4oOE3jpNlEoFi9mYY5UKJ2LRUix1hHI0B4fxTTi8X-2F4fDsi6z1aAeq0vOqNHy0fE943=
|
390
|
+
scUW0up7BEsXWFxMwIhGOhcwd8KOqiPq-2FJQ-2Fvm-2B-2BYE-2FptP0SGh6jWCVOJTDYu-2BJ=
|
391
|
+
wmzqJTkj2XAPy4YnaIP6WzcOIZa1ahaPEb-2Bmip2msswy-2FX0MRqGDFo4IkzAPm-2F6lLy0fi=
|
392
|
+
FlF6g-3D-3D"> <img title=3D"wedding400x300.jpg" width=3D"400" height=3D"300=
|
393
|
+
" style=3D"border: none; padding: 0; margin: 0; display: block;" alt=3D"wed=
|
394
|
+
ding400x300.jpg" src=3D"http://newsletter.pubgroup.com/admin/temp/newslette=
|
395
|
+
rs/1980/wedding400x300.jpg" id=3D"img-292px" /></a> <!-- if feat landing ur=
|
396
|
+
l is blank --></td>
|
397
|
+
</tr>
|
398
|
+
</tbody>
|
399
|
+
</table>
|
400
|
+
<!-- /feat img -->=20
|
401
|
+
<table width=3D"216" border=3D"0" align=3D"center" id=3D"width-292px" cellp=
|
402
|
+
adding=3D"0" cellspacing=3D"0">
|
403
|
+
<tbody>
|
404
|
+
<tr>
|
405
|
+
<td valign=3D"top"><!-- feature text section -->=20
|
406
|
+
<table width=3D"212" border=3D"0" align=3D"right" style=3D"text-align: left=
|
407
|
+
;" id=3D"width-292px" cellpadding=3D"0" cellspacing=3D"0">
|
408
|
+
<tbody>
|
409
|
+
<tr>
|
410
|
+
<td valign=3D"top" align=3D"left" style=3D"font-family: Helvetica, Arial, s=
|
411
|
+
ans-serif; font-size: 17.5px; line-height: 21px; text-align: left;"><a href=
|
412
|
+
=3D"http://moneyliving.pgoamedia.com/wf/click?upn=3D0OmjnBxG7LxFBM0VftFjmad=
|
413
|
+
CZEzWlfXJDKJVxidGt3qNK6tMiMNiOK8OOhjXc5jh2nNonV4UyeQVq2wknVx5mg-3D-3D_1-2B2=
|
414
|
+
i4NJ0yu0cCUcR-2FYNSSe7yGzeiS38odIme2gGGUgSK9HUk8EiAqsw9omFQqnB3J7xmuonE779r=
|
415
|
+
HGJkqhlp4ZN8FhVk6GnDg30G-2FrHa5uCurc-2B-2BhVifGkxcPlrGH5JgD04OcMa4GxLAiQK-2=
|
416
|
+
FU53-2FLFqOVXGP8VSsytuYfQ5-2FY7cbAzQX9ci57ek6QDfM35oc-2Fu9-2Bjru8DoOGpFPpfq=
|
417
|
+
DUo-2F0WSSd07cT9-2BKiDtwnq-2Fj53FoBk2lpi6Q9BNaol53CPlFOpwiMVIGEVDo87e0YypAj=
|
418
|
+
zlLl-2BPf1uQQRoZCl-2Bsr26-2BanVHa8gK6sQp1aiHyTR5hlFR5jnzKv74NaL5IKN9AU77S5N=
|
419
|
+
AxX1v85KbqnlZq5UeJUZWmmsaNt-2B3GbIJ3lQxpP8nAzzToSpuB0UssKk6g-3D-3D" target=
|
420
|
+
=3D"_blank" style=3D"font-family: Helvetica, Arial, sans-serif; font-weight=
|
421
|
+
: normal; font-size: 21px; color: #252421; line-height: 28px; text-align: l=
|
422
|
+
eft; text-decoration: none;">Be Our Guest</a>=C2=A0<span style=3D"text-alig=
|
423
|
+
n: left; font-family: Helvetica, Arial, sans-serif; font-size: 15px; color:=
|
424
|
+
#3d3d3d; padding-bottom: 5px;">=C2=A0</span></td>
|
425
|
+
</tr>
|
426
|
+
<tr>
|
427
|
+
<td colspan=3D"2"><img width=3D"1" height=3D"7" src=3D"http://pgoamedia.com=
|
428
|
+
/wp-content/uploads/2013/08/spacer.gif" style=3D"display: block;" /></td>
|
429
|
+
</tr>
|
430
|
+
<tr valign=3D"top">
|
431
|
+
<!-- feature copy -->
|
432
|
+
<td align=3D"left" style=3D"font-family: Helvetica, Arial, sans-serif; font=
|
433
|
+
-size: 14px; margin: 0; line-height: 21px; padding-bottom: 3px;" colspan=3D=
|
434
|
+
"2"><span>So, you=E2=80=99re invited to a wedding. Finance expert Pete the =
|
435
|
+
Planner shares tips for being a gracious guest=E2=80=94without blowing your=
|
436
|
+
savings</span>.</td>
|
437
|
+
</tr>
|
438
|
+
<tr>
|
439
|
+
<td colspan=3D"2"><img width=3D"1" height=3D"10" src=3D"http://pgoamedia.co=
|
440
|
+
m/wp-content/uploads/2013/08/spacer.gif" style=3D"display: block;" /></td>
|
441
|
+
</tr>
|
442
|
+
<tr valign=3D"top">
|
443
|
+
<!-- URL 1 -->
|
444
|
+
<td align=3D"left" colspan=3D"2"><a style=3D"font-family: Helvetica, Arial,=
|
445
|
+
sans-serif; font-size: 14px; color: #a8c500; text-decoration: none; font-w=
|
446
|
+
eight: bold;" target=3D"_blank" href=3D"http://moneyliving.pgoamedia.com/wf=
|
447
|
+
/click?upn=3D0OmjnBxG7LxFBM0VftFjmadCZEzWlfXJDKJVxidGt3qNK6tMiMNiOK8OOhjXc5=
|
448
|
+
jh2nNonV4UyeQVq2wknVx5mg-3D-3D_1-2B2i4NJ0yu0cCUcR-2FYNSSe7yGzeiS38odIme2gGG=
|
449
|
+
UgSK9HUk8EiAqsw9omFQqnB3J7xmuonE779rHGJkqhlp4WmICeTQBu-2Bd1K4ObjblCz205uNqb=
|
450
|
+
7xT-2B6SQU8ZFhARv-2FNmiXKTht-2F3s-2FUpMKivjqwg-2Bw9qJMIz3zs-2BiMYJpQx4yZoOD=
|
451
|
+
de3kRFYvfn7zvjJD6DPlJI66JVSK7GPoHHn3DiDpkQpXzXOZ74mpOxbg-2BqHYU8K6ZKH40bwhH=
|
452
|
+
qyKsSSaH-2FAnD-2BPf9Uge1F2uVcUkN6Lo220EwczdJ7MOo7Uq8tgnK00jlB45bFHAscroTRAN=
|
453
|
+
kvOvna5IqVybEqx-2BNvV1j2o19v8ywGg-2FEhEYxBlPkcyPklMOCIjILr8CgS8W8z2qpooZRv7=
|
454
|
+
y4VTvIlMQi-2FZqKw-3D-3D">How to Tackle the Expense of Attending a Wedding</=
|
455
|
+
a></td>
|
456
|
+
</tr>
|
457
|
+
<tr>
|
458
|
+
<td colspan=3D"2"><img width=3D"1" height=3D"14" src=3D"http://pgoamedia.co=
|
459
|
+
m/wp-content/uploads/2013/08/spacer.gif" style=3D"display: block;" /></td>
|
460
|
+
</tr>
|
461
|
+
<tr valign=3D"top">
|
462
|
+
<!-- URL 2 -->
|
463
|
+
<td align=3D"left" colspan=3D"2"><a style=3D"font-family: Helvetica, Arial,=
|
464
|
+
sans-serif; font-size: 14px; color: #a8c500; text-decoration: none; font-w=
|
465
|
+
eight: bold;" target=3D"_blank" href=3D"http://moneyliving.pgoamedia.com/wf=
|
466
|
+
/click?upn=3D0OmjnBxG7LxFBM0VftFjmadCZEzWlfXJDKJVxidGt3rh-2ByRhtgD0Jrg5Ad6Y=
|
467
|
+
UPsiFNVsypYx7KAfyGI-2FUfwE-2BQ-3D-3D_1-2B2i4NJ0yu0cCUcR-2FYNSSe7yGzeiS38odI=
|
468
|
+
me2gGGUgSK9HUk8EiAqsw9omFQqnB3J7xmuonE779rHGJkqhlp4etDut6DrVqebKBikh-2BWVtF=
|
469
|
+
oCkzsKj5Rt2fen66ciVbcfZMbuPsnrt8Adq-2BEW-2BntiKNXIGvml3ULomY6LA2eMFIK9e0Z4L=
|
470
|
+
zgNt5ho8aBtkimvsABTCVihms6GZ4vl2pixFu-2F6nKH7-2BSQRsMUwEEpClcUORbsQ82NO9UcK=
|
471
|
+
36iUEGfBzb8LR0ajq4tgZ3iGwG1Vph-2BGEqKye4tHan6LGN8ccLYHeW-2BHJSNyOD4GcsA2yZM=
|
472
|
+
DWgo7ysL3JxOcVDvuVqLEALOEz4888wh7NW7sTOCZOTOE034x1TnTHVLRPhBJZQftydL21NuIUW=
|
473
|
+
DBaSfhhHt4Q-3D-3D">How to Give Without Breaking the Bank</a></td>
|
474
|
+
</tr>
|
475
|
+
<tr>
|
476
|
+
<td colspan=3D"2"><img width=3D"1" height=3D"14" src=3D"http://pgoamedia.co=
|
477
|
+
m/wp-content/uploads/2013/08/spacer.gif" style=3D"display: block;" /></td>
|
478
|
+
</tr>
|
479
|
+
<tr valign=3D"top">
|
480
|
+
<!-- URL 3 -->
|
481
|
+
<td align=3D"left" colspan=3D"2"><a style=3D"font-family: Helvetica, Arial,=
|
482
|
+
sans-serif; font-size: 14px; color: #a8c500; text-decoration: none; font-w=
|
483
|
+
eight: bold;" target=3D"_blank" href=3D"http://moneyliving.pgoamedia.com/wf=
|
484
|
+
/click?upn=3D0OmjnBxG7LxFBM0VftFjmadCZEzWlfXJDKJVxidGt3q2Mt6dqAkFk5wgAle0fr=
|
485
|
+
zOailWoXg-2B755tZQ5eNhkGJQ-3D-3D_1-2B2i4NJ0yu0cCUcR-2FYNSSe7yGzeiS38odIme2g=
|
486
|
+
GGUgSK9HUk8EiAqsw9omFQqnB3J7xmuonE779rHGJkqhlp4THwjJizIRnUvRYjdRYXdf7KkF3NX=
|
487
|
+
4GvJkgoYlmyDvU1mo7tzXcayOQFPtI16oHI1lO6HEVrXXX9QjCq6fQ35ZPjoZNsg6gNEpAmepqJ=
|
488
|
+
uNguQyqzA2UZHRj4QPxexblbh1eCQPsAipeIXzRNrXScg88lbxMPV5uliKA02NUchOOfZkvFAa-=
|
489
|
+
2Bggm8lISP03HFUCJNX3pz0iuggqSvozODfJN8BgsljeBFccfroYeymB-2FKMIhaoc53fofu3vX=
|
490
|
+
Pi1E49bkHI-2FN1Rlct-2BFLDOn-2BlijBvgRdeiI3VR2mu1-2B75V2Ced4E-2FZNiGD63IKK85=
|
491
|
+
zlEye3A-3D-3D">10 Buy One, Give One Companies Worth Supporting</a></td>
|
492
|
+
</tr>
|
493
|
+
</tbody>
|
494
|
+
</table>
|
495
|
+
<!-- /feature text section --></td>
|
496
|
+
</tr>
|
497
|
+
</tbody>
|
498
|
+
</table>
|
499
|
+
<!-- --></td>
|
500
|
+
</tr>
|
501
|
+
<tr>
|
502
|
+
<td><img width=3D"1" height=3D"14" src=3D"http://pgoamedia.com/wp-content/u=
|
503
|
+
ploads/2013/08/spacer.gif" style=3D"display: block;" /></td>
|
504
|
+
</tr>
|
505
|
+
</tbody>
|
506
|
+
</table>
|
507
|
+
<!-- /Feature --></td>
|
508
|
+
</tr>
|
509
|
+
</tbody>
|
510
|
+
</table>
|
511
|
+
<!--/main wrapper --> <!-- Box Ad -->
|
512
|
+
=20
|
513
|
+
<table cellpadding=3D"0" cellspacing=3D"0" border=3D"0" width=3D"644" bgc=
|
514
|
+
olor=3D"#F7F7F7" align=3D"center" id=3D"width-320px" style=3D"">
|
515
|
+
<tr valign=3D"top">
|
516
|
+
<td><table id=3D"width-320px" width=3D"644" height=3D"7" align=3D"cen=
|
517
|
+
ter" cellpadding=3D"0" cellspacing=3D"0" bgcolor=3D"#ffffff" >
|
518
|
+
<tbody>
|
519
|
+
<tr>
|
520
|
+
<td style=3D"border-top:1px #ddd dotted;"><img width=3D"1" he=
|
521
|
+
ight=3D"5" src=3D"http://pgoamedia.com/wp-content/uploads/2013/08/spacer.gi=
|
522
|
+
f" style=3D"display:block;"></td>
|
523
|
+
</tr>
|
524
|
+
</tbody>
|
525
|
+
</table></td>
|
526
|
+
</tr>
|
527
|
+
<tr valign=3D"top">
|
528
|
+
<td align=3D"center" valign=3D"top" style=3D"font-size:11px; line-hei=
|
529
|
+
ght:14px; text-align:center;font-family: Helvetica, Arial, sans-serif;">=C2=
|
530
|
+
=A0</td>
|
531
|
+
</tr>
|
532
|
+
<tr>
|
533
|
+
<td align=3D"center" ><a href=3D"http://moneyliving.pgoamedia.com/wf/=
|
534
|
+
click?upn=3Dq88NBHGj6Y9s-2BFPp8uoGrgUOt73g5nzx-2BfwOGeRcNZ1kf2xd3-2Fx6yVBgd=
|
535
|
+
NkK4TCBXLvJzPqJxgoJEpXUSYdO0g-3D-3D_1-2B2i4NJ0yu0cCUcR-2FYNSSe7yGzeiS38odIm=
|
536
|
+
e2gGGUgSK9HUk8EiAqsw9omFQqnB3J7xmuonE779rHGJkqhlp4WfvzrjR20hsItpZiD-2Fhopj3=
|
537
|
+
QS9ROw0Fz159loGsDrW94pMKfnctSAKTxh9RFe5SydWIzucdsPtTrn0XC8eidG2KloiRz5Z86pU=
|
538
|
+
9iH5-2B1RIusJI59790sT8GdaTpUz4CZt5RLdi4vp1gEozQNM72C1Y86oevSBUgNEH9Z2kp2f-2=
|
539
|
+
FHOIYplI-2BWo78wmbxR1-2B1VDS9PFa-2FTCBKDrVvKnnPiic90sbDKw8h7n65s5WNDFgghFmD=
|
540
|
+
f-2F6SNE0AEsLKzhHJArihcJf8MrnHmWLQRJDewlxsHV22NjjL6bRioLtI-2FlmPkREr1FUpDJK=
|
541
|
+
T-2FAudQ30xXHg-3D-3D" target=3D"_top">
|
542
|
+
<img src=3D"http://www.ftjcfx.com/image-7410754-11716531" width=3D"300" hei=
|
543
|
+
ght=3D"250" alt=3D"" border=3D"0"/></a></td>
|
544
|
+
</tr>
|
545
|
+
<tr valign=3D"top">
|
546
|
+
<td align=3D"center" valign=3D"top" style=3D"font-size:11px; line-hei=
|
547
|
+
ght:26px; text-align:center;font-family: Arial, Helvetica, sans-serif;">Adv=
|
548
|
+
ertisement<br /></td>
|
549
|
+
</tr>
|
550
|
+
<tr>
|
551
|
+
<td><table id=3D"width-320px" width=3D"644" height=3D"7" align=3D"cen=
|
552
|
+
ter" cellpadding=3D"0" cellspacing=3D"0" bgcolor=3D"#ffffff" >
|
553
|
+
<tbody>
|
554
|
+
<tr>
|
555
|
+
<td style=3D"border-bottom:1px #ddd dotted;"><img width=3D"1"=
|
556
|
+
height=3D"5" src=3D"http://pgoamedia.com/wp-content/uploads/2013/08/spacer=
|
557
|
+
..gif" style=3D"display:block;"></td>
|
558
|
+
</tr>
|
559
|
+
</tbody>
|
560
|
+
</table></td>
|
561
|
+
</tr>
|
562
|
+
</table>
|
563
|
+
=20
|
564
|
+
<!-- /box ad --> <!-- subfeature 1 places -->=20
|
565
|
+
<table width=3D"644" cellpadding=3D"0" cellspacing=3D"0" border=3D"0" align=
|
566
|
+
=3D"center" style=3D"text-align: left;" id=3D"width-266px">
|
567
|
+
<tbody>
|
568
|
+
<tr>
|
569
|
+
<td colspan=3D"2"><img width=3D"1" height=3D"14" src=3D"http://pgoamedia.co=
|
570
|
+
m/wp-content/uploads/2013/08/spacer.gif" style=3D"display: block;" /></td>
|
571
|
+
</tr>
|
572
|
+
<tr>
|
573
|
+
<td id=3D"display-none" width=3D"14"><img width=3D"14" height=3D"1" src=3D"=
|
574
|
+
http://pgoamedia.com/wp-content/uploads/2013/08/spacer.gif" style=3D"displa=
|
575
|
+
y: block;" /></td>
|
576
|
+
<td width=3D"644" valign=3D"top" align=3D"left" style=3D"font-family: Helve=
|
577
|
+
tica, Arial, sans-serif; font-size: 17.5px; line-height: 21px; text-align: =
|
578
|
+
left; text-transform: uppercase;">it's tax time!</td>
|
579
|
+
</tr>
|
580
|
+
<tr>
|
581
|
+
<td colspan=3D"2"><img width=3D"1" height=3D"14" src=3D"http://pgoamedia.co=
|
582
|
+
m/wp-content/uploads/2013/08/spacer.gif" style=3D"display: block;" /></td>
|
583
|
+
</tr>
|
584
|
+
</tbody>
|
585
|
+
</table>
|
586
|
+
<table width=3D"644" id=3D"width-266px" align=3D"center" cellpadding=3D"0" =
|
587
|
+
cellspacing=3D"0">
|
588
|
+
<tbody>
|
589
|
+
<tr>
|
590
|
+
<td>
|
591
|
+
<table width=3D"266" height=3D"200" align=3D"left" style=3D"font-family: He=
|
592
|
+
lvetica, Arial, sans-serif; font-size: 14px; color: #000; margin: 0; text-a=
|
593
|
+
lign: center;" id=3D"width-266px" cellpadding=3D"0" cellspacing=3D"0">
|
594
|
+
<tbody>
|
595
|
+
<tr>
|
596
|
+
<td width=3D"14" id=3D"display-none"><img width=3D"14" height=3D"1" src=3D"=
|
597
|
+
http://pgoamedia.com/wp-content/uploads/2013/08/spacer.gif" style=3D"displa=
|
598
|
+
y: block;" /></td>
|
599
|
+
<td colspan=3D"4" style=3D"border-bottom: solid; border-bottom-color: #fff;=
|
600
|
+
border-bottom-width: 1px;"><a style=3D"font-family: Helvetica, Arial, sans=
|
601
|
+
-serif; font-size: 14px; color: #a8c500; text-decoration: none;" target=3D"=
|
602
|
+
_blank" href=3D"http://moneyliving.pgoamedia.com/wf/click?upn=3D0OmjnBxG7Lx=
|
603
|
+
FBM0VftFjmadCZEzWlfXJDKJVxidGt3rhrnfnLvyNNsg-2FvbMKs2OPmJrKaB8RRslM1K417INO=
|
604
|
+
MA-3D-3D_1-2B2i4NJ0yu0cCUcR-2FYNSSe7yGzeiS38odIme2gGGUgSK9HUk8EiAqsw9omFQqn=
|
605
|
+
B3J7xmuonE779rHGJkqhlp4SFS1u4bAtirVLHvkiGt-2FDFAJhJkH3Tyag7kmh-2FgOHR70qT7L=
|
606
|
+
1P2YNbI9rd0CWoT4-2B9wplUjM5eXlgHcjR69IHmWn5tLOli2e0aDBVpSamsz1mXxZLrHn3VbIx=
|
607
|
+
6yUbA-2BDX-2Biprx8Vw9RUjVRYwoOQZwKkvbmmk-2F4u6ulKGfEz73jmA6gvfT4IG42eOGiunW=
|
608
|
+
JMj95-2FR1hvCYBumklG8utv-2BFFGF1ANXK4Wk3yGvNLSDrr3zs0GdUf1JuGwRODQpNAeofvtU=
|
609
|
+
mhwK4Bhff2H8WZj3AofhUaROtdEmdrUPW7cqJzsDX0AFMhFRuu0REX7QJ2Jw-3D-3D"> <img t=
|
610
|
+
itle=3D"calculator266x200.jpg" width=3D"266" height=3D"200" style=3D"border=
|
611
|
+
: none; padding: 0; margin: 0; display: block;" alt=3D"calculator266x200.jp=
|
612
|
+
g" src=3D"http://newsletter.pubgroup.com/admin/temp/newsletters/1980/calcul=
|
613
|
+
ator266x200.jpg" /></a></td>
|
614
|
+
</tr>
|
615
|
+
</tbody>
|
616
|
+
</table>
|
617
|
+
<!-- copy -->=20
|
618
|
+
<table width=3D"350" border=3D"0" align=3D"right" style=3D"text-align: left=
|
619
|
+
;" id=3D"width-266px" cellpadding=3D"0" cellspacing=3D"0">
|
620
|
+
<tbody>
|
621
|
+
<tr>
|
622
|
+
<td colspan=3D"2"><img width=3D"1" height=3D"14" src=3D"http://pgoamedia.co=
|
623
|
+
m/wp-content/uploads/2013/08/spacer.gif" style=3D"display: block;" /></td>
|
624
|
+
<td rowspan=3D"6"><img width=3D"14" height=3D"1" src=3D"http://pgoamedia.co=
|
625
|
+
m/wp-content/uploads/2013/08/spacer.gif" style=3D"display: block;" /></td>
|
626
|
+
</tr>
|
627
|
+
<tr>
|
628
|
+
<td width=3D"350" valign=3D"top" align=3D"left" style=3D"font-family: Helve=
|
629
|
+
tica, Arial, sans-serif; font-size: 17.5px; line-height: 21px; text-align: =
|
630
|
+
left;"><a id=3D"font14" href=3D"http://moneyliving.pgoamedia.com/wf/click?u=
|
631
|
+
pn=3D0OmjnBxG7LxFBM0VftFjmadCZEzWlfXJDKJVxidGt3rhrnfnLvyNNsg-2FvbMKs2OPmJrK=
|
632
|
+
aB8RRslM1K417INOMA-3D-3D_1-2B2i4NJ0yu0cCUcR-2FYNSSe7yGzeiS38odIme2gGGUgSK9H=
|
633
|
+
Uk8EiAqsw9omFQqnB3J7xmuonE779rHGJkqhlp4YZJpkj-2BMv15A50wjXAcCb96vCNqHZC46gy=
|
634
|
+
t2I4kwRymhHGOIRcUq3PVWZxd5dMArSwEPBK3Mf98oJRdWwyRhjRsctM996Iuk3UXnKyYUwn0fO=
|
635
|
+
rrL5lCbROM2c3PgkGoTnd3Lk3GpC12pgAm-2B9Gc8hVNRNzJvkD6DkYREx7bjUq0O9ttlTzDeCL=
|
636
|
+
lpjSkY8fUsnla2Kf2fWZk0kz-2F8BoiUtueS-2FkBvim8wNI-2FhGrJ1NMrEtLOEjAbTnjBEj8o=
|
637
|
+
QexFF3-2FfQDzFG-2BJ5SxNu5PmnUSV9yFKYoY7M509tiAB8bklPj440kibzdC9Volp8NLa60A-=
|
638
|
+
3D-3D" target=3D"_blank" style=3D"font-family: Helvetica, Arial, sans-serif=
|
639
|
+
; font-weight: normal; font-size: 17.5px; color: #a8c500; line-height: 21px=
|
640
|
+
; text-align: left; text-decoration: none;">Expert Tax-Filing Tips</a></td>
|
641
|
+
</tr>
|
642
|
+
<tr>
|
643
|
+
<td><img width=3D"1" height=3D"7" src=3D"http://pgoamedia.com/wp-content/up=
|
644
|
+
loads/2013/08/spacer.gif" style=3D"display: block;" /></td>
|
645
|
+
</tr>
|
646
|
+
<tr valign=3D"top">
|
647
|
+
<!-- feature copy -->
|
648
|
+
<td width=3D"350" align=3D"left" style=3D"font-family: Helvetica, Arial, sa=
|
649
|
+
ns-serif; font-size: 14px; margin: 0; line-height: 21px; padding-bottom: 3p=
|
650
|
+
x;" colspan=3D"2"><span>The tax experts at H&R Block share essential tax ti=
|
651
|
+
ps for DIY filers=E2=80=94plus a list of common filing mistakes that could =
|
652
|
+
be costing you money.</span></td>
|
653
|
+
</tr>
|
654
|
+
<tr>
|
655
|
+
<td colspan=3D"2"><img width=3D"1" height=3D"10" src=3D"http://pgoamedia.co=
|
656
|
+
m/wp-content/uploads/2013/08/spacer.gif" style=3D"display: block;" /></td>
|
657
|
+
</tr>
|
658
|
+
<tr>
|
659
|
+
<td style=3D"font-family: Helvetica, Arial, sans-serif; font-size: 14px; li=
|
660
|
+
ne-height: 14px;"><a target=3D"_blank" style=3D"font-family: Helvetica, Ari=
|
661
|
+
al, sans-serif; font-size: 14px; color: #a8c500; text-decoration: none; fon=
|
662
|
+
t-weight: bold;" href=3D"http://moneyliving.pgoamedia.com/wf/click?upn=3D0O=
|
663
|
+
mjnBxG7LxFBM0VftFjmadCZEzWlfXJDKJVxidGt3rhrnfnLvyNNsg-2FvbMKs2OPmJrKaB8RRsl=
|
664
|
+
M1K417INOMA-3D-3D_1-2B2i4NJ0yu0cCUcR-2FYNSSe7yGzeiS38odIme2gGGUgSK9HUk8EiAq=
|
665
|
+
sw9omFQqnB3J7xmuonE779rHGJkqhlp4V2NFdHB7SZp3KBM2cvCVQbzKy2twOWJNvqJZeNr8pWx=
|
666
|
+
IBsR-2FFdIJV0vO-2FLU8H1qqVWTyVnjJZLrMPdJpvpZkgweQGu9d0x1yVs56p5EA-2BHzPSRzy=
|
667
|
+
XQPcVqIMWwge6cZQRSbWLhjqoSM3ALF1tvKiHN4LTUqE55eoKQhxRS3rTBsbZigNjpJ95CDQ-2B=
|
668
|
+
WBtdwg8LuU1nzxYZXoP-2FFPKu-2ByA6Nwuq9BU2NjAacxcc9dEl-2BeptvFMyADwW4Inu1jiUt=
|
669
|
+
FqVmfuYf5-2Fc4AT4KjmGUFgqQQXq8G6jlGXAQp-2Fina8QW9LmW1cLr-2B4e3YSi605G5tmQ-3=
|
670
|
+
D-3D">Maximize Your Return</a></td>
|
671
|
+
</tr>
|
672
|
+
</tbody>
|
673
|
+
</table>
|
674
|
+
<!-- /copy --></td>
|
675
|
+
</tr>
|
676
|
+
</tbody>
|
677
|
+
</table>
|
678
|
+
<!-- Line Break -->=20
|
679
|
+
<table id=3D"width-320px" width=3D"644" height=3D"7" align=3D"center" cellp=
|
680
|
+
adding=3D"0" cellspacing=3D"0">
|
681
|
+
<tbody>
|
682
|
+
<tr>
|
683
|
+
<td><img width=3D"1" height=3D"14" src=3D"http://pgoamedia.com/wp-content/u=
|
684
|
+
ploads/2013/08/spacer.gif" style=3D"display: block;" /></td>
|
685
|
+
</tr>
|
686
|
+
<tr>
|
687
|
+
<td style=3D"border-top: 1px #ddd dotted; border-bottom: 1px #ddd dotted;">=
|
688
|
+
<img width=3D"1" height=3D"5" src=3D"http://pgoamedia.com/wp-content/upload=
|
689
|
+
s/2013/08/spacer.gif" style=3D"display: block;" /></td>
|
690
|
+
</tr>
|
691
|
+
<tr>
|
692
|
+
<td><img width=3D"1" height=3D"14" src=3D"http://pgoamedia.com/wp-content/u=
|
693
|
+
ploads/2013/08/spacer.gif" style=3D"display: block;" /></td>
|
694
|
+
</tr>
|
695
|
+
</tbody>
|
696
|
+
</table>
|
697
|
+
<!-- /Line Break --> <!-- /subfeature 1 places --> <!-- more features -->=
|
698
|
+
=20
|
699
|
+
<table id=3D"width-320px" width=3D"644" align=3D"center" cellpadding=3D"0" =
|
700
|
+
cellspacing=3D"0" bgcolor=3D"#ffffff" style=3D"background-color: #ffffff;">
|
701
|
+
<tbody>
|
702
|
+
<tr>
|
703
|
+
<td width=3D"14" id=3D"display-none"><img width=3D"14" height=3D"1" src=3D"=
|
704
|
+
http://pgoamedia.com/wp-content/uploads/2013/08/spacer.gif" style=3D"displa=
|
705
|
+
y: block;" /></td>
|
706
|
+
<td>
|
707
|
+
<table width=3D"630" cellpadding=3D"0" cellspacing=3D"0" border=3D"0" align=
|
708
|
+
=3D"center" style=3D"text-align: left; background-color: #ffffff;" id=3D"wi=
|
709
|
+
dth-266px" bgcolor=3D"#ffffff">
|
710
|
+
<tbody>
|
711
|
+
<tr>
|
712
|
+
<td width=3D"630" valign=3D"top" align=3D"left" style=3D"font-family: Helve=
|
713
|
+
tica, Arial, sans-serif; font-size: 14px; color: #000; line-height: 21px; t=
|
714
|
+
ext-align: left; text-transform: uppercase;">all that glitters</td>
|
715
|
+
</tr>
|
716
|
+
<tr>
|
717
|
+
<td><img width=3D"1" height=3D"10" src=3D"http://pgoamedia.com/wp-content/u=
|
718
|
+
ploads/2013/08/spacer.gif" style=3D"display: block;" /></td>
|
719
|
+
</tr>
|
720
|
+
</tbody>
|
721
|
+
</table>
|
722
|
+
<table width=3D"630" id=3D"width-266px" align=3D"center" cellpadding=3D"0" =
|
723
|
+
cellspacing=3D"0" bgcolor=3D"#ffffff" style=3D"background-color: #ffffff;">
|
724
|
+
<tbody>
|
725
|
+
<tr>
|
726
|
+
<td>
|
727
|
+
<table width=3D"160" height=3D"120" align=3D"left" style=3D"font-family: He=
|
728
|
+
lvetica, Arial, sans-serif; font-size: 14px; color: #000; margin: 0; text-a=
|
729
|
+
lign: center;" id=3D"align-center" cellpadding=3D"0" cellspacing=3D"0">
|
730
|
+
<tbody>
|
731
|
+
<tr>
|
732
|
+
<td><a style=3D"font-family: Helvetica, Arial, sans-serif; font-size: 14px;=
|
733
|
+
color: #a8c500; text-decoration: none;" target=3D"_blank" href=3D"http://m=
|
734
|
+
oneyliving.pgoamedia.com/wf/click?upn=3D0OmjnBxG7LxFBM0VftFjmadCZEzWlfXJDKJ=
|
735
|
+
VxidGt3qC5wKn06z0mJVMWA9V0pkb58ujk1SXOgUNc6sPfkhBDQ-3D-3D_1-2B2i4NJ0yu0cCUc=
|
736
|
+
R-2FYNSSe7yGzeiS38odIme2gGGUgSK9HUk8EiAqsw9omFQqnB3J7xmuonE779rHGJkqhlp4dnv=
|
737
|
+
9k5SM3Ex1uuFIwI721BJEP3brCPgqOsFmagkTms-2FUxeEUokcjft66xI2ofXBokchQEGLj2cyP=
|
738
|
+
ibBZE7j6LqX0sAIS9xGMhE7zQaVOfkjqsLJNX8JMT8e7v9pDRT1nRxcNOYUtYQgRQl6pJTeD1Lv=
|
739
|
+
oA0jKclNjsE0KshMkcohbYDQMvkob1nohFan7PIFLMO41tghMxy3IWQ7sGAsFcV7gUO3JMsD4Td=
|
740
|
+
bq0hOsPB6MbkyfJfCHV-2B7fOohNxrkMp3S0bXFpfDVetY0f9oPBI-2FSkZex94qnIHZQ9ti0R5=
|
741
|
+
zTA6q5-2Bxdvu53x9txhZ1GhGg-3D-3D"> <img title=3D"gold266x200.jpg" width=3D"=
|
742
|
+
160" height=3D"120" style=3D"border: none; padding: 0; margin: 0; display: =
|
743
|
+
block;" alt=3D"gold266x200.jpg" src=3D"http://newsletter.pubgroup.com/admin=
|
744
|
+
/temp/newsletters/1980/gold266x200.jpg" id=3D"img-266px" /></a></td>
|
745
|
+
</tr>
|
746
|
+
</tbody>
|
747
|
+
</table>
|
748
|
+
<!-- copy -->=20
|
749
|
+
<table width=3D"450" border=3D"0" align=3D"right" style=3D"text-align: left=
|
750
|
+
;" id=3D"width-266px" cellpadding=3D"0" cellspacing=3D"0">
|
751
|
+
<tbody>
|
752
|
+
<tr>
|
753
|
+
<td><img width=3D"1" height=3D"14" src=3D"http://pgoamedia.com/wp-content/u=
|
754
|
+
ploads/2013/08/spacer.gif" style=3D"display: block;" /></td>
|
755
|
+
<td rowspan=3D"6" width=3D"14"><img width=3D"14" height=3D"1" src=3D"http:/=
|
756
|
+
/pgoamedia.com/wp-content/uploads/2013/08/spacer.gif" style=3D"display: blo=
|
757
|
+
ck;" /></td>
|
758
|
+
</tr>
|
759
|
+
<tr>
|
760
|
+
<td valign=3D"top" align=3D"left" style=3D"font-family: Helvetica, Arial, s=
|
761
|
+
ans-serif; font-size: 17.5px; line-height: 21px; text-align: left;"><a id=
|
762
|
+
=3D"font14" href=3D"http://moneyliving.pgoamedia.com/wf/click?upn=3D0OmjnBx=
|
763
|
+
G7LxFBM0VftFjmadCZEzWlfXJDKJVxidGt3qC5wKn06z0mJVMWA9V0pkb58ujk1SXOgUNc6sPfk=
|
764
|
+
hBDQ-3D-3D_1-2B2i4NJ0yu0cCUcR-2FYNSSe7yGzeiS38odIme2gGGUgSK9HUk8EiAqsw9omFQ=
|
765
|
+
qnB3J7xmuonE779rHGJkqhlp4fHC1uSidGe0HCScSkZ3iCzqI1Fw9IDlTKE7KPsdwq2TnlSIkyA=
|
766
|
+
P1BpE9lnGyzpqlDnXsm9RzuglErs1M0Ts2RFNwYcjo0suFQls1SzYS8fZKClsgXrwWG4t57kDXA=
|
767
|
+
m-2FhkvkRe3dd-2FQ6u4eIxM3ZvNHv8KaYH7hGj66iKmxP4eLu0b4mVcpMYWdtO1kzM1RGNY8VV=
|
768
|
+
YlTtQ4LzpV2wD3SJxC6-2Fdw8-2FKqMu955fLmefuj5vJz3qSMzZt9j8OuqVthSDP1hSpQ7-2BZ=
|
769
|
+
AdZv1uJwnzOHJ5ivRHnh-2FIO7zdGMBLN-2FLUAT7hpEkgNDhdYHa7n3xwYA-3D-3D" target=
|
770
|
+
=3D"_blank" style=3D"font-family: Helvetica, Arial, sans-serif; font-weight=
|
771
|
+
: bold; font-size: 17.5px; color: #252421; line-height: 21px; text-align: l=
|
772
|
+
eft; text-decoration: none;">Should You Invest in a Pot of Gold?</a>=C2=A0<=
|
773
|
+
span style=3D"text-align: left; font-family: Helvetica, Arial, sans-serif; =
|
774
|
+
font-size: 14px; font-weight: bold; color: #bbb; padding-bottom: 5px;">=C2=
|
775
|
+
=A0</span></td>
|
776
|
+
</tr>
|
777
|
+
<tr>
|
778
|
+
<td><img width=3D"1" height=3D"7" src=3D"http://pgoamedia.com/wp-content/up=
|
779
|
+
loads/2013/08/spacer.gif" style=3D"display: block;" /></td>
|
780
|
+
</tr>
|
781
|
+
<tr valign=3D"top">
|
782
|
+
<!-- feature copy -->
|
783
|
+
<td align=3D"left" style=3D"font-family: Helvetica, Arial, sans-serif; font=
|
784
|
+
-size: 14px; margin: 0; line-height: 21px; padding-bottom: 3px;" colspan=3D=
|
785
|
+
"2"><span>Consider the benefits and drawbacks associated with the yellow br=
|
786
|
+
ick road=E2=80=94and how to get started investing in precious metals.</span=
|
787
|
+
></td>
|
788
|
+
</tr>
|
789
|
+
<tr>
|
790
|
+
<td colspan=3D"2"><img width=3D"1" height=3D"10" src=3D"http://pgoamedia.co=
|
791
|
+
m/wp-content/uploads/2013/08/spacer.gif" style=3D"display: block;" /></td>
|
792
|
+
</tr>
|
793
|
+
<tr>
|
794
|
+
<td style=3D"font-family: Helvetica, Arial, sans-serif; font-size: 14px; li=
|
795
|
+
ne-height: 21px;"><a target=3D"_blank" style=3D"font-family: Helvetica, Ari=
|
796
|
+
al, sans-serif; font-size: 14px; color: #a8c500; text-decoration: none; fon=
|
797
|
+
t-weight: bold;" href=3D"http://moneyliving.pgoamedia.com/wf/click?upn=3D0O=
|
798
|
+
mjnBxG7LxFBM0VftFjmadCZEzWlfXJDKJVxidGt3qC5wKn06z0mJVMWA9V0pkb58ujk1SXOgUNc=
|
799
|
+
6sPfkhBDQ-3D-3D_1-2B2i4NJ0yu0cCUcR-2FYNSSe7yGzeiS38odIme2gGGUgSK9HUk8EiAqsw=
|
800
|
+
9omFQqnB3J7xmuonE779rHGJkqhlp4dsQhoWORiWT3BGalp7xyZZXAgmd0odvrbzo86X4gPtGAo=
|
801
|
+
5lzp5FTKMXdWwCMQCbsy9bM302jFe1sktgZAQDkKpP66h3-2B6nGugN-2BkOzVrVMhcPcKrib7I=
|
802
|
+
OUOWtiYgn9b-2Fptl1VTWr1Oa-2Bau9eyKPuujey-2Bqf4Tmm8KxQNX1vVdY-2Bh1hxs3zmspyG=
|
803
|
+
WEu4S2Ch1dcfvTflGDQ8jQ-2BvR9rkOFNuI-2BwLcl1mPqpoxG6mOVb0ZmFzNYMDN4sTFnMHIrC=
|
804
|
+
XCyEIQiOpafsV-2B39gtIt9MSGzPpTGvTPmtIg9uVRCgfEwDD4VdoCmhxnL5-2FMvqGflvA-3D-=
|
805
|
+
3D">Going for Gold</a></td>
|
806
|
+
</tr>
|
807
|
+
</tbody>
|
808
|
+
</table>
|
809
|
+
<!-- /copy --></td>
|
810
|
+
</tr>
|
811
|
+
<tr>
|
812
|
+
<td><img width=3D"1" height=3D"14" src=3D"http://pgoamedia.com/wp-content/u=
|
813
|
+
ploads/2013/08/spacer.gif" style=3D"display: block;" /></td>
|
814
|
+
</tr>
|
815
|
+
<tr>
|
816
|
+
<td style=3D"border-bottom: 1px #ddd dotted;"><img width=3D"1" height=3D"5"=
|
817
|
+
src=3D"http://pgoamedia.com/wp-content/uploads/2013/08/spacer.gif" style=
|
818
|
+
=3D"display: block;" /></td>
|
819
|
+
</tr>
|
820
|
+
<tr>
|
821
|
+
<td><img width=3D"1" height=3D"10" src=3D"http://pgoamedia.com/wp-content/u=
|
822
|
+
ploads/2013/08/spacer.gif" style=3D"display: block;" /></td>
|
823
|
+
</tr>
|
824
|
+
</tbody>
|
825
|
+
</table>
|
826
|
+
<table width=3D"630" id=3D"width-266px" align=3D"center" cellpadding=3D"0" =
|
827
|
+
cellspacing=3D"0" bgcolor=3D"#ffffff" style=3D"background-color: #ffffff;">
|
828
|
+
<tbody>
|
829
|
+
<tr>
|
830
|
+
<td width=3D"630" valign=3D"top" align=3D"left" style=3D"font-family: Helve=
|
831
|
+
tica, Arial, sans-serif; font-size: 14px; color: #000; line-height: 21px; t=
|
832
|
+
ext-align: left; text-transform: uppercase;">expert Q&A</td>
|
833
|
+
</tr>
|
834
|
+
<tr>
|
835
|
+
<td><img width=3D"1" height=3D"10" src=3D"http://pgoamedia.com/wp-content/u=
|
836
|
+
ploads/2013/08/spacer.gif" style=3D"display: block;" /></td>
|
837
|
+
</tr>
|
838
|
+
<tr>
|
839
|
+
<td>
|
840
|
+
<table width=3D"160" height=3D"120" align=3D"left" style=3D"font-family: He=
|
841
|
+
lvetica, Arial, sans-serif; font-size: 14px; color: #000; margin: 0; text-a=
|
842
|
+
lign: center;" id=3D"align-center" cellpadding=3D"0" cellspacing=3D"0">
|
843
|
+
<tbody>
|
844
|
+
<tr>
|
845
|
+
<td><a style=3D"font-family: Helvetica, Arial, sans-serif; font-size: 14px;=
|
846
|
+
color: #a8c500; text-decoration: none;" target=3D"_blank" href=3D"http://m=
|
847
|
+
oneyliving.pgoamedia.com/wf/click?upn=3D0OmjnBxG7LxFBM0VftFjmadCZEzWlfXJDKJ=
|
848
|
+
VxidGt3r5uIv5sb6s5bUhSMARhRfRkP1NJgLYdOLjqNcOx7UiMw-3D-3D_1-2B2i4NJ0yu0cCUc=
|
849
|
+
R-2FYNSSe7yGzeiS38odIme2gGGUgSK9HUk8EiAqsw9omFQqnB3J7xmuonE779rHGJkqhlp4URR=
|
850
|
+
7OcOFKIjBoAR6JqoBepS0DbRFFRnTDE-2FqVrm0zoFoF-2BproqCL3pq56KbXwYI-2BXT9VVYEB=
|
851
|
+
Da6jn2w-2BD5DmA0nBtf-2Fx1FEZ-2B9CWtQlgHY2QMuZknolq5djQzgYRvg8FcNNFi4QNC6DQ8=
|
852
|
+
OeDa-2BIK2eb3JkFs1P-2B-2BPMoccmD5N-2BTyM4NnX66M8eg1QeU5pyUTCMgya07oxRZmRsll=
|
853
|
+
93CzRYcWrh3-2FFGT9T8nAXPUrx-2BtOaSjfPMqmnEWrcyAg89VkPBuTO7VIdOJ7FntmLaHPNq-=
|
854
|
+
2BBqH-2F0gHSEha1X-2FvkumMvG4veOteeYE8oC3N2Cyuu1Q-3D-3D"> <img title=3D"shel=
|
855
|
+
ter266x200.jpg" width=3D"160" height=3D"120" style=3D"border: none; padding=
|
856
|
+
: 0; margin: 0; display: block;" alt=3D"shelter266x200.jpg" src=3D"http://n=
|
857
|
+
ewsletter.pubgroup.com/admin/temp/newsletters/1980/shelter266x200.jpg" id=
|
858
|
+
=3D"img-266px" /></a></td>
|
859
|
+
</tr>
|
860
|
+
</tbody>
|
861
|
+
</table>
|
862
|
+
<!-- copy -->=20
|
863
|
+
<table width=3D"450" border=3D"0" align=3D"right" style=3D"text-align: left=
|
864
|
+
;" id=3D"width-266px" cellpadding=3D"0" cellspacing=3D"0">
|
865
|
+
<tbody>
|
866
|
+
<tr>
|
867
|
+
<td><img width=3D"1" height=3D"14" src=3D"http://pgoamedia.com/wp-content/u=
|
868
|
+
ploads/2013/08/spacer.gif" style=3D"display: block;" /></td>
|
869
|
+
<td rowspan=3D"6" width=3D"14"><img width=3D"14" height=3D"1" src=3D"http:/=
|
870
|
+
/pgoamedia.com/wp-content/uploads/2013/08/spacer.gif" style=3D"display: blo=
|
871
|
+
ck;" /></td>
|
872
|
+
</tr>
|
873
|
+
<tr>
|
874
|
+
<td valign=3D"top" align=3D"left" style=3D"font-family: Helvetica, Arial, s=
|
875
|
+
ans-serif; font-size: 17.5px; line-height: 21px; text-align: left;"><a id=
|
876
|
+
=3D"font14" href=3D"http://moneyliving.pgoamedia.com/wf/click?upn=3D0OmjnBx=
|
877
|
+
G7LxFBM0VftFjmadCZEzWlfXJDKJVxidGt3r5uIv5sb6s5bUhSMARhRfRkP1NJgLYdOLjqNcOx7=
|
878
|
+
UiMw-3D-3D_1-2B2i4NJ0yu0cCUcR-2FYNSSe7yGzeiS38odIme2gGGUgSK9HUk8EiAqsw9omFQ=
|
879
|
+
qnB3J7xmuonE779rHGJkqhlp4XOFjr54FrnoXvDwQnIszVqv8GY4AQN-2F4z2Bdlq9Ej-2FbsHZ=
|
880
|
+
vydxDo3yQduFF9KqLA6QPMneYBMtJZOuTvlPviBZDFsAnD5fNRXBECMv-2B42U4vp6dQN1loVDc=
|
881
|
+
vmuAcg8VwuyrQqv5yu2MQ3-2BSqJGfKU6J-2F-2Fs7lTftFuhEV-2BkCsHB7c1UAFZ26f87w99n=
|
882
|
+
FqSPl6UAw-2B4yEKu-2BKtLqAguOcXDCrwaVchpaPX37UWMscVxnhroCQFBC6Ko5ROu01rKQYxp=
|
883
|
+
9e-2FfuvJli6Zl8vROF8gZC8qGAa2vOPOrRYPfLU87L6G-2BrF1c6smaMkLlaHbxv0Fw-3D-3D"=
|
884
|
+
target=3D"_blank" style=3D"font-family: Helvetica, Arial, sans-serif; font=
|
885
|
+
-weight: bold; font-size: 17.5px; color: #252421; line-height: 21px; text-a=
|
886
|
+
lign: left; text-decoration: none;">What to Know About Tax Shelters</a>=C2=
|
887
|
+
=A0<span style=3D"text-align: left; font-family: Helvetica, Arial, sans-ser=
|
888
|
+
if; font-size: 14px; font-weight: bold; color: #bbb; padding-bottom: 5px;">=
|
889
|
+
=C2=A0</span></td>
|
890
|
+
</tr>
|
891
|
+
<tr>
|
892
|
+
<td><img width=3D"1" height=3D"7" src=3D"http://pgoamedia.com/wp-content/up=
|
893
|
+
loads/2013/08/spacer.gif" style=3D"display: block;" /></td>
|
894
|
+
</tr>
|
895
|
+
<tr valign=3D"top">
|
896
|
+
<!-- feature copy -->
|
897
|
+
<td align=3D"left" style=3D"font-family: Helvetica, Arial, sans-serif; font=
|
898
|
+
-size: 14px; margin: 0; line-height: 21px; padding-bottom: 3px;" colspan=3D=
|
899
|
+
"2"><span>Explore different types of tax shelters, and consider which type =
|
900
|
+
of shelter could benefit you the most.</span></td>
|
901
|
+
</tr>
|
902
|
+
<tr>
|
903
|
+
<td colspan=3D"2"><img width=3D"1" height=3D"10" src=3D"http://pgoamedia.co=
|
904
|
+
m/wp-content/uploads/2013/08/spacer.gif" style=3D"display: block;" /></td>
|
905
|
+
</tr>
|
906
|
+
<tr>
|
907
|
+
<td style=3D"font-family: Helvetica, Arial, sans-serif; font-size: 14px; li=
|
908
|
+
ne-height: 21px;"><a target=3D"_blank" style=3D"font-family: Helvetica, Ari=
|
909
|
+
al, sans-serif; font-size: 14px; color: #a8c500; text-decoration: none; fon=
|
910
|
+
t-weight: bold;" href=3D"http://moneyliving.pgoamedia.com/wf/click?upn=3D0O=
|
911
|
+
mjnBxG7LxFBM0VftFjmadCZEzWlfXJDKJVxidGt3r5uIv5sb6s5bUhSMARhRfRkP1NJgLYdOLjq=
|
912
|
+
NcOx7UiMw-3D-3D_1-2B2i4NJ0yu0cCUcR-2FYNSSe7yGzeiS38odIme2gGGUgSK9HUk8EiAqsw=
|
913
|
+
9omFQqnB3J7xmuonE779rHGJkqhlp4TAQV4saLTCixuL0xzq7EWjqtSJS1fPLdpIIwBOhyn2Omc=
|
914
|
+
nXIwDOKW2IIaiS1jhr7krhmilcWDpIakrxqISHnnHsvIEtAEVbT8prcCZ8puRR38AIwTLfFUG-2=
|
915
|
+
FIO6VOCOtoduxt6QMdtgJllCQI-2FLSWlsRWM5GQ7zmDEFzKRz9pi4lgqpSp3hjna3GHWYKKaKN=
|
916
|
+
DkMetSuGxUEtw-2BdX1RlvbL3eW-2BwUvLJLDRS-2FxEWiR8RKPmIuHmVtQTI-2BvpKRf-2B2we=
|
917
|
+
SHPR30lEJkVL-2Fg8nfNnnMQ4zOKZ6Zxlt3UbSSkx-2BfVisCQP8wwtVDk3Ywz9HwdrYA-3D-3D=
|
918
|
+
">Ask an Expert</a></td>
|
919
|
+
</tr>
|
920
|
+
</tbody>
|
921
|
+
</table>
|
922
|
+
<!-- /copy --></td>
|
923
|
+
</tr>
|
924
|
+
<tr>
|
925
|
+
<td><img width=3D"1" height=3D"14" src=3D"http://pgoamedia.com/wp-content/u=
|
926
|
+
ploads/2013/08/spacer.gif" style=3D"display: block;" /></td>
|
927
|
+
</tr>
|
928
|
+
<tr>
|
929
|
+
<td style=3D"border-bottom: 1px #ddd dotted;"><img width=3D"1" height=3D"5"=
|
930
|
+
src=3D"http://pgoamedia.com/wp-content/uploads/2013/08/spacer.gif" style=
|
931
|
+
=3D"display: block;" /></td>
|
932
|
+
</tr>
|
933
|
+
<tr>
|
934
|
+
<td><img width=3D"1" height=3D"10" src=3D"http://pgoamedia.com/wp-content/u=
|
935
|
+
ploads/2013/08/spacer.gif" style=3D"display: block;" /></td>
|
936
|
+
</tr>
|
937
|
+
</tbody>
|
938
|
+
</table>
|
939
|
+
<table width=3D"630" id=3D"width-266px" align=3D"center" cellpadding=3D"0" =
|
940
|
+
cellspacing=3D"0" bgcolor=3D"#ffffff" style=3D"background-color: #ffffff;">
|
941
|
+
<tbody>
|
942
|
+
<tr>
|
943
|
+
<td width=3D"630" valign=3D"top" align=3D"left" style=3D"font-family: Helve=
|
944
|
+
tica, Arial, sans-serif; font-size: 14px; color: #000; line-height: 21px; t=
|
945
|
+
ext-align: left; text-transform: uppercase;"><!-- subfeature headline --> t=
|
946
|
+
he bottom line</td>
|
947
|
+
</tr>
|
948
|
+
<tr>
|
949
|
+
<td><img width=3D"1" height=3D"10" src=3D"http://pgoamedia.com/wp-content/u=
|
950
|
+
ploads/2013/08/spacer.gif" style=3D"display: block;" /></td>
|
951
|
+
</tr>
|
952
|
+
<tr>
|
953
|
+
<td>
|
954
|
+
<table width=3D"160" height=3D"120" align=3D"left" style=3D"font-family: He=
|
955
|
+
lvetica, Arial, sans-serif; font-size: 14px; color: #000; margin: 0; text-a=
|
956
|
+
lign: center;" id=3D"align-center" cellpadding=3D"0" cellspacing=3D"0">
|
957
|
+
<tbody>
|
958
|
+
<tr>
|
959
|
+
<td><a style=3D"font-family: Helvetica, Arial, sans-serif; font-size: 14px;=
|
960
|
+
color: #a8c500; text-decoration: none;" target=3D"_blank" href=3D"http://m=
|
961
|
+
oneyliving.pgoamedia.com/wf/click?upn=3D0OmjnBxG7LxFBM0VftFjmadCZEzWlfXJDKJ=
|
962
|
+
VxidGt3qyPI9ze4xWnwWW3XA9xjJOMM-2B265D48A-2BtocLxQeKMjG7f0FRguE84qtJWqX4Hwn=
|
963
|
+
M-3D_1-2B2i4NJ0yu0cCUcR-2FYNSSe7yGzeiS38odIme2gGGUgSK9HUk8EiAqsw9omFQqnB3J7=
|
964
|
+
xmuonE779rHGJkqhlp4V5Cqa3Ta52twIOyjG-2FwcwwIUynTFPgfFUJjGnTpIi6IaLfiJohMFun=
|
965
|
+
8QsJKuoVD2dyg6plLsmUjJsN4OK9JOGstlOgDy-2BjVpRnIL8XoYNOkoEamvBbM73ZPQaa2ot4k=
|
966
|
+
L96XB3eGV-2Fm90O0yoqZf6gzKxQ5y3i5cSJ0J2zDau4kjl5QC14t4M75xlgbliL2YK8m-2BwxC=
|
967
|
+
oeNONHUUGPcZOlTHoLYLR9Z5f-2BBPiOtcdonUyFqerp-2F-2BCMy-2F1aobzo1JQRnby6ItUn7=
|
968
|
+
ld-2F6Isz4yFSSrfE33OvsTpPNNaVxP0e-2BNQy4o9nuzdp1DdCF-2BRATMqMA-3D-3D"> <img=
|
969
|
+
title=3D"haggle266x200.jpg" width=3D"160" height=3D"120" style=3D"border: =
|
970
|
+
none; padding: 0; margin: 0; display: block;" alt=3D"haggle266x200.jpg" src=
|
971
|
+
=3D"http://newsletter.pubgroup.com/admin/temp/newsletters/1980/haggle266x20=
|
972
|
+
0.jpg" id=3D"img-266px" /></a></td>
|
973
|
+
</tr>
|
974
|
+
</tbody>
|
975
|
+
</table>
|
976
|
+
<!-- copy -->=20
|
977
|
+
<table width=3D"450" border=3D"0" align=3D"right" style=3D"text-align: left=
|
978
|
+
;" id=3D"width-266px" cellpadding=3D"0" cellspacing=3D"0">
|
979
|
+
<tbody>
|
980
|
+
<tr>
|
981
|
+
<td><img width=3D"1" height=3D"14" src=3D"http://pgoamedia.com/wp-content/u=
|
982
|
+
ploads/2013/08/spacer.gif" style=3D"display: block;" /></td>
|
983
|
+
<td rowspan=3D"6" width=3D"14"><img width=3D"14" height=3D"1" src=3D"http:/=
|
984
|
+
/pgoamedia.com/wp-content/uploads/2013/08/spacer.gif" style=3D"display: blo=
|
985
|
+
ck;" /></td>
|
986
|
+
</tr>
|
987
|
+
<tr>
|
988
|
+
<td valign=3D"top" align=3D"left" style=3D"font-family: Helvetica, Arial, s=
|
989
|
+
ans-serif; font-size: 17.5px; line-height: 21px; text-align: left;"><a id=
|
990
|
+
=3D"font14" href=3D"http://moneyliving.pgoamedia.com/wf/click?upn=3D0OmjnBx=
|
991
|
+
G7LxFBM0VftFjmadCZEzWlfXJDKJVxidGt3qyPI9ze4xWnwWW3XA9xjJOMM-2B265D48A-2Btoc=
|
992
|
+
LxQeKMjG7f0FRguE84qtJWqX4HwnM-3D_1-2B2i4NJ0yu0cCUcR-2FYNSSe7yGzeiS38odIme2g=
|
993
|
+
GGUgSK9HUk8EiAqsw9omFQqnB3J7xmuonE779rHGJkqhlp4fdTcArF6c-2B-2BcJpZFu2mGdHqD=
|
994
|
+
fkIAefOzvOal01jGDwKDbiF3Xh4Pj-2FiIFQIEnD4v8n40SeDpsMXHbCnRPx51phkWS7p9IwHRR=
|
995
|
+
-2FJK7eIMwrdfkzloJfqCEemITTvhu9g8861YxvgTCLWlr1aYEGOk-2F7JDrTlwAcRkYOHqmhEU=
|
996
|
+
gxl-2FL3wG2A2PaZvzj4Y04I3AdeyuuISDVG1jWtZs1rjo0HPwz0R0fyLizXWBAlit9OQz5g69X=
|
997
|
+
rtQu-2FyQPYqt4iY8M4mXt9NEH-2F9KEPMMmPEX1r4nqBdffTsIvv2n0mSoNjKBToBrXfkBTJqH=
|
998
|
+
VthPskWpg-3D-3D" target=3D"_blank" style=3D"font-family: Helvetica, Arial, =
|
999
|
+
sans-serif; font-weight: bold; font-size: 17.5px; color: #252421; line-heig=
|
1000
|
+
ht: 21px; text-align: left; text-decoration: none;">How to Negotiate Prices=
|
1001
|
+
on Almost Anything</a>=C2=A0<span style=3D"text-align: left; font-family: =
|
1002
|
+
Helvetica, Arial, sans-serif; font-size: 14px; font-weight: bold; color: #b=
|
1003
|
+
bb; padding-bottom: 5px;">=C2=A0</span></td>
|
1004
|
+
</tr>
|
1005
|
+
<tr>
|
1006
|
+
<td><img width=3D"1" height=3D"7" src=3D"http://pgoamedia.com/wp-content/up=
|
1007
|
+
loads/2013/08/spacer.gif" style=3D"display: block;" /></td>
|
1008
|
+
</tr>
|
1009
|
+
<tr valign=3D"top">
|
1010
|
+
<!-- feature copy -->
|
1011
|
+
<td align=3D"left" style=3D"font-family: Helvetica, Arial, sans-serif; font=
|
1012
|
+
-size: 14px; margin: 0; line-height: 21px; padding-bottom: 3px;" colspan=3D=
|
1013
|
+
"2"><span>Unexpected areas where the bottom line is up for negotiation, plu=
|
1014
|
+
s tips for making your best case for a mark-down.</span></td>
|
1015
|
+
</tr>
|
1016
|
+
<tr>
|
1017
|
+
<td colspan=3D"2"><img width=3D"1" height=3D"10" src=3D"http://pgoamedia.co=
|
1018
|
+
m/wp-content/uploads/2013/08/spacer.gif" style=3D"display: block;" /></td>
|
1019
|
+
</tr>
|
1020
|
+
<tr>
|
1021
|
+
<td style=3D"font-family: Helvetica, Arial, sans-serif; font-size: 14px; li=
|
1022
|
+
ne-height: 21px;"><a target=3D"_blank" style=3D"font-family: Helvetica, Ari=
|
1023
|
+
al, sans-serif; font-size: 14px; color: #a8c500; text-decoration: none; fon=
|
1024
|
+
t-weight: bold;" href=3D"http://moneyliving.pgoamedia.com/wf/click?upn=3D0O=
|
1025
|
+
mjnBxG7LxFBM0VftFjmadCZEzWlfXJDKJVxidGt3qyPI9ze4xWnwWW3XA9xjJOMM-2B265D48A-=
|
1026
|
+
2BtocLxQeKMjG7f0FRguE84qtJWqX4HwnM-3D_1-2B2i4NJ0yu0cCUcR-2FYNSSe7yGzeiS38od=
|
1027
|
+
Ime2gGGUgSK9HUk8EiAqsw9omFQqnB3J7xmuonE779rHGJkqhlp4RmMUpfILicIZuO49yhMJcid=
|
1028
|
+
wqlwo4dYZF5BoLwvHiGauzTs10E17vVYVWPQ7r-2F7Ucte1TyEc-2BbGQe6RKEk8Vg0JMuGOfj2=
|
1029
|
+
7UgJcZ9kd7BjMP811i1-2Fuj3EjHKm1i0unKrZWhrGRzX6G96y5f3zDPnSvm1q-2B6kACrvREVy=
|
1030
|
+
6VrOAHK6BT5J4MFiaWNOpnyCuKX92z5fo9mlLQjnBKtve9AotNlOxcW7qYGM1rJ0ZOaE3FkPQj6=
|
1031
|
+
q3HWNTjYXLAdWGmdCRZ0v-2FksnkABytkdBigDpjAtrWabPVxJzKDZ6s-2B3kxLhdfuMwqSE9w1=
|
1032
|
+
oPtFiMk0Cw-3D-3D">Haggle This!</a></td>
|
1033
|
+
</tr>
|
1034
|
+
</tbody>
|
1035
|
+
</table>
|
1036
|
+
<!-- /copy --></td>
|
1037
|
+
</tr>
|
1038
|
+
</tbody>
|
1039
|
+
</table>
|
1040
|
+
</td>
|
1041
|
+
</tr>
|
1042
|
+
</tbody>
|
1043
|
+
</table>
|
1044
|
+
<!-- /more features --> <!-- Line Break -->=20
|
1045
|
+
<table id=3D"width-320px" width=3D"644" height=3D"7" align=3D"center" cellp=
|
1046
|
+
adding=3D"0" cellspacing=3D"0">
|
1047
|
+
<tbody>
|
1048
|
+
<tr>
|
1049
|
+
<td><img width=3D"1" height=3D"14" src=3D"http://pgoamedia.com/wp-content/u=
|
1050
|
+
ploads/2013/08/spacer.gif" style=3D"display: block;" /></td>
|
1051
|
+
</tr>
|
1052
|
+
<tr>
|
1053
|
+
<td style=3D"border-top: 1px #ddd dotted; border-bottom: 1px #ddd dotted;">=
|
1054
|
+
<img width=3D"1" height=3D"5" src=3D"http://pgoamedia.com/wp-content/upload=
|
1055
|
+
s/2013/08/spacer.gif" style=3D"display: block;" /></td>
|
1056
|
+
</tr>
|
1057
|
+
<tr>
|
1058
|
+
<td><img width=3D"1" height=3D"14" src=3D"http://pgoamedia.com/wp-content/u=
|
1059
|
+
ploads/2013/08/spacer.gif" style=3D"display: block;" /></td>
|
1060
|
+
</tr>
|
1061
|
+
</tbody>
|
1062
|
+
</table>
|
1063
|
+
<!-- /Line Break --> <!-- social -->=20
|
1064
|
+
<table id=3D"width-151px" width=3D"644" align=3D"center" cellpadding=3D"0" =
|
1065
|
+
cellspacing=3D"0" bgcolor=3D"#ffffff" style=3D"background-color: #ffffff;">
|
1066
|
+
<tbody>
|
1067
|
+
<tr>
|
1068
|
+
<td>
|
1069
|
+
<table cellspacing=3D"0" cellpadding=3D"0" border=3D"0" width=3D"620" id=3D=
|
1070
|
+
"width-292px" align=3D"center" margin=3D"0" padding=3D"0" bgcolor=3D"#fffff=
|
1071
|
+
f" style=3D"background-color: #ffffff;">
|
1072
|
+
<tbody>
|
1073
|
+
<tr>
|
1074
|
+
<td width=3D"78" id=3D"width-50px"></td>
|
1075
|
+
<td align=3D"center" style=3D"display: inline;"><!--fb-->=20
|
1076
|
+
<table cellspacing=3D"0" cellpadding=3D"0" border=3D"0" id=3D"width-151px" =
|
1077
|
+
align=3D"left" margin=3D"0" padding=3D"0" height=3D"50" style=3D"display: i=
|
1078
|
+
nline;">
|
1079
|
+
<tbody>
|
1080
|
+
<tr height=3D"50">
|
1081
|
+
<td height=3D"50" align=3D"left" style=3D"border-right-width: 4px; border-r=
|
1082
|
+
ight-style: solid; border-right-color: #fff; margin: 0; height: 50px; paddi=
|
1083
|
+
ng: 0; line-height: 0px; font-size: 0px;"><a href=3D"http://moneyliving.pgo=
|
1084
|
+
amedia.com/wf/click?upn=3Dq88NBHGj6Y9s-2BFPp8uoGrpMnmQfOJAzmW0x7LGh89w-2F-2=
|
1085
|
+
B8o8r8mj3UwOOSKM-2FCDF6_1-2B2i4NJ0yu0cCUcR-2FYNSSe7yGzeiS38odIme2gGGUgSK9HU=
|
1086
|
+
k8EiAqsw9omFQqnB3J7xmuonE779rHGJkqhlp4Xtj-2BqWDgFlFsYqsQKowcIBHE5D64mEkYPNd=
|
1087
|
+
vZXRxczm6k3ek1ve5i64G8GP-2FrGhj2P-2Bas9AYk4kYFD69mrvymxnIz8yP1RsM-2BAE8uouE=
|
1088
|
+
-2Ff1W9-2FJrS4ORbBaSA3-2FHwnaNSYgHkT5Lm6jnYaozUHJxcfQvb5irlmuMdx3XHNbueKvht=
|
1089
|
+
xBnqkn1KAdTtJQuaSIxnTb0nqP3439-2FL91XOkVPcwGeryevi332N-2F9YNqJ4MHMqhW7JdgOD=
|
1090
|
+
8MEvR9LZGHQQX4cF4jQ3K5AWZ5mfKbS-2FFnRse8lShxPJW0WvMVqVHoF40gFMQYRRVzE0i9j-2=
|
1091
|
+
BxguMA-3D-3D"><img width=3D"150" height=3D"50" src=3D"http://pgoamedia.com/=
|
1092
|
+
wp-content/uploads/2013/08/social-button-facebook.gif" alt=3D"facebook" bor=
|
1093
|
+
der=3D"0" style=3D"display: block;" id=3D"align-center" /></a></td>
|
1094
|
+
</tr>
|
1095
|
+
</tbody>
|
1096
|
+
</table>
|
1097
|
+
<!--twitter-->=20
|
1098
|
+
<table cellspacing=3D"0" cellpadding=3D"0" border=3D"0" id=3D"width-151px" =
|
1099
|
+
align=3D"left" margin=3D"0" padding=3D"0" height=3D"50" style=3D"display: i=
|
1100
|
+
nline;">
|
1101
|
+
<tbody>
|
1102
|
+
<tr height=3D"50">
|
1103
|
+
<td height=3D"50" align=3D"left" style=3D"border-right-width: 4px; border-r=
|
1104
|
+
ight-style: solid; border-right-color: #fff; margin: 0; height: 50px; paddi=
|
1105
|
+
ng: 0; line-height: 0px; font-size: 0px;"><a href=3D"http://moneyliving.pgo=
|
1106
|
+
amedia.com/wf/click?upn=3DzZLeb7wfApEn5bJwZJmXt1EDXe7c3rHaV3hNW0cXskPVtqB-2=
|
1107
|
+
FKgpVES4wIX-2BrDduh_1-2B2i4NJ0yu0cCUcR-2FYNSSe7yGzeiS38odIme2gGGUgSK9HUk8Ei=
|
1108
|
+
Aqsw9omFQqnB3J7xmuonE779rHGJkqhlp4a2MaWWmhd-2Ba2SJ4P3wBxXlWdOCizp5udC3CT7vk=
|
1109
|
+
kZnFq-2F0XKXCB1of33zzcBo8ZwfaUVwT3wyL0FI1cpReWQTYrzHP1NAkPprGBpQqtrxonIM8ye=
|
1110
|
+
3Iu-2F13HggP1mCqvynESzKw6tbXBYimi2eRucun8cdySpgYIFuY7HTbWS6-2BIf4oZpmdkcWkn=
|
1111
|
+
eBWMqwkloluIvtwAnoHTGO2QRHfh9nv4dh4W-2FzkTBTWS0S4R3ccEVE6-2Fsra-2F4loeLMQoH=
|
1112
|
+
-2FlwBsKT3LeYgB2DSuLqdJWpkQ-2BmWtWzt-2FZL0B1Mx392okEvGfvb8zEuGWrVtX97zsTgMA=
|
1113
|
+
-3D-3D"><img width=3D"150" height=3D"50" src=3D"http://pgoamedia.com/wp-con=
|
1114
|
+
tent/uploads/2013/08/social-button-twitter.gif" alt=3D"twitter" border=3D"0=
|
1115
|
+
" style=3D"display: block;" id=3D"align-center" /></a></td>
|
1116
|
+
</tr>
|
1117
|
+
</tbody>
|
1118
|
+
</table>
|
1119
|
+
<!--pin-->=20
|
1120
|
+
<table cellspacing=3D"0" cellpadding=3D"0" border=3D"0" id=3D"width-151px" =
|
1121
|
+
align=3D"left" margin=3D"0" padding=3D"0" height=3D"50" style=3D"display: i=
|
1122
|
+
nline;">
|
1123
|
+
<tbody>
|
1124
|
+
<tr height=3D"50">
|
1125
|
+
<td height=3D"50" align=3D"left" style=3D"margin: 0; height: 50px; padding:=
|
1126
|
+
0; line-height: 0px; font-size: 0px;"><a href=3D"http://moneyliving.pgoame=
|
1127
|
+
dia.com/wf/click?upn=3Dj5BXvpfG9OGXdDs9iwnf2zt9xDm7KmcEnEO8FsyzN1287Dn2W2JS=
|
1128
|
+
sLDOyBAKfFtD_1-2B2i4NJ0yu0cCUcR-2FYNSSe7yGzeiS38odIme2gGGUgSK9HUk8EiAqsw9om=
|
1129
|
+
FQqnB3J7xmuonE779rHGJkqhlp4bl3RFmFYhBPojv7naeUR5h8Y472J9hxZObWpyQCkpPp0sx0-=
|
1130
|
+
2B8jFb0j6OSfPIOESzLWT0Sas6s-2BYFcr7IYxROCB2zciqrn-2Bch3Yu6LWn4lvxyU2-2BVZxp=
|
1131
|
+
ZrktPjkLm7umVB-2Fr4xk-2Bt9LfRayqjqh3tdM-2BtcaGMrJzKQqlf4lxQuh9GvJu6IulpzaZm=
|
1132
|
+
FusjJhsgZyRUMVgGFQj-2FqCtO-2BUY-2BsDC-2BdEISuwFSlNHMJjEl74-2FUeb0-2B4ejX9ST=
|
1133
|
+
BGg0qmfyQ2iS7RqxPlbMJG7BaqG7mvbToB41oqGsAXKvdT3kk-2BOe2248LT8LC-2FllqxeLai7=
|
1134
|
+
9Hw-3D-3D"><img width=3D"150" height=3D"50" src=3D"http://pgoamedia.com/wp-=
|
1135
|
+
content/uploads/2013/08/social-button-pin.gif" alt=3D"pinterest" border=3D"=
|
1136
|
+
0" style=3D"display: block;" id=3D"align-center" /></a></td>
|
1137
|
+
</tr>
|
1138
|
+
</tbody>
|
1139
|
+
</table>
|
1140
|
+
</td>
|
1141
|
+
<td width=3D"50"></td>
|
1142
|
+
</tr>
|
1143
|
+
</tbody>
|
1144
|
+
</table>
|
1145
|
+
<!-- /social --> <!-- cross promo unit -->=20
|
1146
|
+
<table width=3D"644" align=3D"center" cellpadding=3D"0" cellspacing=3D"0" i=
|
1147
|
+
d=3D"width-292px" bgcolor=3D"#ffffff" style=3D"background-color: #ffffff;">
|
1148
|
+
<tbody>
|
1149
|
+
<tr>
|
1150
|
+
<td width=3D"616"><img width=3D"1" height=3D"14" src=3D"http://pgoamedia.co=
|
1151
|
+
m/wp-content/uploads/2013/08/spacer.gif" style=3D"display: block;" /></td>
|
1152
|
+
</tr>
|
1153
|
+
</tbody>
|
1154
|
+
</table>
|
1155
|
+
<!-- /cross promo unit --> <!-- footer -->=20
|
1156
|
+
<table id=3D"width-320px" width=3D"100%" height=3D"50" align=3D"center" cel=
|
1157
|
+
lpadding=3D"0" cellspacing=3D"0" style=3D"border-top: solid; border-top-col=
|
1158
|
+
or: #EAE9E4; border-top-width: 2px; background-color: #f7f7f7;">
|
1159
|
+
<tbody>
|
1160
|
+
</tbody>
|
1161
|
+
</table>
|
1162
|
+
<!-- /footer --></td>
|
1163
|
+
</tr>
|
1164
|
+
</tbody>
|
1165
|
+
</table>
|
1166
|
+
</center>
|
1167
|
+
</body></html>
|
1168
|
+
|
1169
|
+
--===============0915156192462505999==--
|
1170
|
+
|
1171
|
+
------------=_1395189126-24245-767319--
|