<?xml version="1.0"?>
<rss version="2.0">
   <channel>
   <title>Dada Mail Developers</title>
   <link>http://dadamailproject.com/cgi-bin/dada/mail.cgi/list/dadadev/</link>
   <description>This mailing list is to discuss the nerdy programming development of Dada Mail - 

If you are *just* looking for support Dada Mail, consult the message boards at: 

    http://dadamailproject.com/support/boards

To post to this list, send a message to: 

     dadadev@dadamailproject.com

All subscribers of this list may post to the list itself. 

Some on topic... topics include: 

* Positive Crits on the program (I like, &quot;x&quot;, but, &quot;y&quot; needs some work - here's an idea on how to make this better...)
* Bug/Error reports 
* Bug fixes
* Request For Comments on any changes to the program 
* Help customizing Dada Mail for your own internal needs 
* Patches
* Language Translations 
* Support Documentation/Doc editing, FAQ's, etc. 
* Discussion of any changes that you would like to be committed to the next version of Dada Mail - 

At the moment, there aren't many people with CVS access for Dada Mail - if you would like CVS access, please first talk about the changes you propose and how it will affect the program. If the idea is sound and agreed upon, the change will be comitted. A good track record of this will allow you to have CVS access. Some reasons that patches will not be accepted is if the patch breaks compatibility with a previous version of the program, the patch is too centric to your own problem or the patch simply isn't very good. 

Please, please please familiarize yourself with the documentation at: 

     http://dadamailproject.com/support/documentation/

Since no one wants to answer the same question twice. 

Another sneaky reason for this mailing list is to test out the discussion list capabilities of Dada Mail, since Dada Mail is used for the mailing list itself. 

*NOTE* - because of this, there may be times that this list will be somewhat broken. Although we're not planning on breaking the program by using it, we're giving you the heads up that this may well happen anyways. 
</description>
   <language>en-us</language>
   <lastBuildDate>Sun, 21 Mar 2010 05:26:00 GMT</lastBuildDate>
   <generator>Pro Dada 4.0.3</generator>
   
    
	 
		<item>
		 <title>[dadadev] 4.0.3 is out</title>
		 <link>http://dadamailproject.com/cgi-bin/dada/mail.cgi/archive/dadadev/20100312213004/</link>
		 <description>
&#60;p&#62;I recently release 4.0.3 of Dada Mail, coupling the UTF-8/unicode support stuff I've been working on with the bug fixes since 4.0.2. 
&#60;/p&#62;&#60;p&#62;Thanks for all the feedback (as always)
&#60;/p&#62;&#60;p&#62;Here's the direct downloads: 
&#60;/p&#62;&#60;p&#62;        &#60;a href=&#34;http://github.com/downloads/justingit/dada-mail/dada-4_0_3.zip&#34;&#62;http://github.com/downloads/justingit/dada-mail/dada-4_0_3.zip&#60;/a&#62;
&#60;/p&#62;&#60;p&#62;        &#60;a href=&#34;http://github.com/downloads/justingit/dada-mail/dada-4_0_3.tar.gz&#34;&#62;http://github.com/downloads/justingit/dada-mail/dada-4_0_3.tar.gz&#60;/a&#62;
&#60;/p&#62;&#60;p&#62;It's also tagged as: 
&#60;/p&#62;&#60;p&#62;        &#60;a href=&#34;http://github.com/justingit/dada-mail/tree/v4_0_3_stable-2010_03_07&#34;&#62;http://github.com/justingit/dada-mail/tree/v4_0_3_stable-2010_03_07&#60;/a&#62;
&#60;/p&#62;
&#60;p&#62;I could really use some verification that that UTF-8/unicode stuff is working. 
&#60;/p&#62;
&#60;p&#62;The changelog is below. I have run into a few issues already: 
&#60;/p&#62;&#60;p&#62;        &#60;a href=&#34;http://github.com/justingit/dada-mail/issues/closed#issue/31&#34;&#62;http://github.com/justingit/dada-mail/issues/closed#issue/31&#60;/a&#62;
&#60;/p&#62;
&#60;p&#62;Another issue has been with converting current MySQL (in particular - I haven't really looked at SQLite or PostgreSQL) from whatever character set was used, to UTF-8. There's no easy way to do that. 
&#60;/p&#62;&#60;p&#62;There's also the problem with errors, like this: 
&#60;/p&#62;&#60;p&#62;        Specified key was too long; max key length is 767 bytes
&#60;/p&#62;&#60;p&#62;When creating tables.  This is directly related to the new charset being set. The resolution seems to be to change the schema, to make certain fields a little smaller. I talk a little about this, here: 
&#60;/p&#62;&#60;p&#62;        &#60;a href=&#34;http://dadamailproject.com/support/boards/viewtopic.php?f=5&#38;amp;t=1902&#38;amp;p=7211&#38;amp;hilit=too+long#p7211&#34;&#62;http://dadamailproject.com/support/boards/viewtopic.php?f=5&#38;t=1902&#38;p=7211&#38;hilit=too+long#p7211&#60;/a&#62;
&#60;/p&#62;&#60;p&#62;I also talk about problems with converting the character set: 
&#60;/p&#62;&#60;p&#62;        &#60;a href=&#34;http://dadamailproject.com/support/boards/viewtopic.php?f=4&#38;amp;t=1904&#38;amp;start=0&#38;amp;hilit=CONVERT+TO+CHARACTER+SET+utf8+COLLATE&#34;&#62;http://dadamailproject.com/support/boards/viewtopic.php?f=4&#38;t=1904&#38;start=0&#38;hilit=CONVERT+TO+CHARACTER+SET+utf8+COLLATE&#60;/a&#62;
&#60;/p&#62;&#60;p&#62;using something like this SQL: 
&#60;/p&#62;&#60;p&#62;        ALTER TABLE `dada_settings` CONVERT TO CHARACTER SET utf8 COLLATE utf8_bin;
&#60;/p&#62;&#60;p&#62;From my experience, this'll muck up everything that's not Latin1, unfortunately. There's a lot about this problem around the intertubes: 
&#60;/p&#62;&#60;p&#62;        &#60;a href=&#34;http://www.mysqlperformanceblog.com/2009/03/17/converting-character-sets/&#34;&#62;http://www.mysqlperformanceblog.com/2009/03/17/converting-character-sets/&#60;/a&#62;
&#60;/p&#62;&#60;p&#62;With a lot of different things to try, each getting a lot more complex than the first. You guys have any insight? :) 
&#60;/p&#62;&#60;h1&#62;&#60;a name=&#34;section_1&#34;&#62;Dada Mail Change Log for version  4.0.3&#60;/a&#62;&#60;/h1&#62;
&#60;h1&#62;&#60;a name=&#34;section_2&#34;&#62;Unicode/UTF-8 Work&#60;/a&#62;&#60;/h1&#62;
&#60;p&#62;We have worked very, very hard to get Dada Mail working with
UTF-8/Unicode.
&#60;/p&#62;&#60;p&#62;We think we did a pretty good job and you'll have a most amazing
experience when comparing this version to any previous version of Dada
Mail (ever), but there may be tiny things still to work out.
&#60;/p&#62;&#60;p&#62;We need to know about them, don't be shy!
&#60;/p&#62;&#60;h1&#62;&#60;a name=&#34;section_3&#34;&#62;SQL table schema changes!&#60;/a&#62;&#60;/h1&#62;
&#60;p&#62;People who upgrade to 4.0.3 (and any version afterwards, until things
change!) should note that the MySQL and PostgreSQL Table Schemas have
changed!
&#60;/p&#62;&#60;p&#62;You may need to update your own tables, to support UTF-8 (if they aren't
already in that encoding).
&#60;/p&#62;&#60;h1&#62;&#60;a name=&#34;section_4&#34;&#62;See Also:&#60;/a&#62;&#60;/h1&#62;
&#60;p&#62;If you're upgrading, please read over the updated UTF-8/Unicode FAQ:
&#60;/p&#62;&#60;p&#62;&#60;a href=&#34;http://dadamailproject.com/support/documentation/features-UTF-8.pod.html&#34;&#62;http://dadamailproject.com/support/documentation/features-UTF-8.pod.html&#60;/a&#62;
&#60;/p&#62;&#60;p&#62;If you're doing a new install, there's nothing you need to know, Dada
Mail should work well out of the box in re: to UTF-8/Unicode stuff.
&#60;/p&#62;&#60;p&#62;Changes to Default List Settings&#60;br/&#62;
We've changed a few of the default list settings, hopefully so that
everyone has a more pleasant experience, right off the bat:
&#60;/p&#62;&#60;h1&#62;&#60;a name=&#34;section_5&#34;&#62;Activate Black List&#60;/a&#62;&#60;/h1&#62;
&#60;p&#62;We've enabled the setting to active the Black List, by default.
&#60;/p&#62;&#60;p&#62;We're also enabling the below settings:
&#60;/p&#62;&#60;ul&#62;
  &#60;li&#62;Move Unsubscribed Subscribers Automatically to the Black List  &#60;/li&#62;&#60;li&#62;Continue to Allow Subscriptions From Subscribers of Black Listed
     Addresses&#60;/li&#62;&#60;/ul&#62;
&#60;p&#62;You still have the option to change new lists to the previous behavior
and already created lists will have their previous behavior, if Black
List Settings have already been edited.
&#60;/p&#62;&#60;h1&#62;&#60;a name=&#34;section_6&#34;&#62;Print List-Specific Headers option Removed&#60;/a&#62;&#60;/h1&#62;
&#60;p&#62;The option, Print List-Specific Headers has been removed from, &#60;em&#62;Mail
Sending -Advanced Sending Preferences&#60;/em&#62; has been removed, &#60;em&#62;but&#60;/em&#62; the
functionality has not. All mailing list messages will have these
headers.
&#60;/p&#62;&#60;h1&#62;&#60;a name=&#34;section_7&#34;&#62;Send Unsubscription Confirmation Emails (Closed-Loop Opt-Out) - disabled by default&#60;/a&#62;&#60;/h1&#62;
&#60;p&#62;Send Unsubscription Confirmation Emails (Closed-Loop Opt-Out) has been
disabled by default (you can still enable it)
&#60;/p&#62;&#60;p&#62;This option, when enabled, requires that when someone wants to
unsubscribe, they have to confirm this unsubscription by clicking on the
unsubscription confirmation link in a URL sent their subscribed address.
&#60;/p&#62;&#60;p&#62;When disabled (the new default), they simply have to fill out the
subscribe/unsubscribe form.
&#60;/p&#62;&#60;h1&#62;&#60;a name=&#34;section_8&#34;&#62;Subscription and Unsubscription links now include an Email Address&#60;/a&#62;&#60;/h1&#62;
&#60;p&#62;When available, both the Subscription and Unsubscription links will have
the potential subscriber's (or unsubscriber's) email address in the link
itself, so that the user does not have to do the two-step of first
following the link and then typing in their email address.
&#60;/p&#62;&#60;p&#62;These links are created per-subscriber (or potential sub/unsub), when
you use the:
&#60;/p&#62;&#60;p&#62;  &#38;lt;!-- tmpl_var PROGRAM_URL --&#38;gt;/s/&#38;lt;!-- tmpl_var list_settings.list --&#38;gt;/&#38;lt;!-- tmpl_var subscriber.email_name --&#38;gt;/&#38;lt;!-- tmpl_var subscriber.email_domain --&#38;gt;/
&#60;/p&#62;&#60;p&#62;or,
&#60;/p&#62;&#60;p&#62;  &#38;lt;!-- tmpl_var PROGRAM_URL --&#38;gt;/u/&#38;lt;!-- tmpl_var list_settings.list --&#38;gt;/&#38;lt;!-- tmpl_var subscriber.email_name --&#38;gt;/&#38;lt;!-- tmpl_var subscriber.email_domain --&#38;gt;/
&#60;/p&#62;&#60;p&#62;tags. Previously, these tags only provided a link to the
subscription/unsubscription form, without the email address embedded
within the link itself. There is no way to revert this behaviour, but
you can still roll your own links, like this:
&#60;/p&#62;&#60;p&#62;Subscription Link:
&#60;/p&#62;&#60;p&#62; &#38;lt;!-- tmpl_var PROGRAM_URL --&#38;gt;/s/&#38;lt;!-- tmpl_var list_settings.list --&#38;gt;
&#60;/p&#62;&#60;p&#62;Unsubscription Link:
&#60;/p&#62;&#60;p&#62;&#38;lt;!-- tmpl_var PROGRAM_URL --&#38;gt;/u/&#38;lt;!-- tmpl_var list_settings.list --&#38;gt;
&#60;/p&#62;&#60;p&#62;Unsubscription Links Now Mandatory for Mass Mailing Messages
Dada Mail will now do a quick check to make sure that there is a Dada
Mail Unsubscription link in your mass mailing messages, before sending
them out.
&#60;/p&#62;&#60;p&#62;If one is not found, one will be automatically appended to the end of
your message.
&#60;/p&#62;&#60;p&#62;It will not be very fancy.
&#60;/p&#62;&#60;p&#62;We suggest that you make sure that you have a real, valid, Dada Mail
unsubscription link in your Mailing List Messages.
&#60;/p&#62;&#60;p&#62;Bug Fixes 4.0.3
&#60;/p&#62;&#60;ul&#62;
  &#60;li&#62;Send newest archived message may have outdated header information&#60;/li&#62;&#60;/ul&#62;
&#60;p&#62;&#60;a href=&#34;http://github.com/justingit/dada-mail/issues/issue/30&#34;&#62;http://github.com/justingit/dada-mail/issues/issue/30&#60;/a&#62;
&#60;/p&#62;&#60;ul&#62;
  &#60;li&#62;pop3 username/password not saved when &#38;quot;Save, Then Test...&#38;quot; button pressed in Sending Preferences&#60;/li&#62;&#60;/ul&#62;
&#60;p&#62;&#60;a href=&#34;http://github.com/justingit/dada-mail/issues/issue/29&#34;&#62;http://github.com/justingit/dada-mail/issues/issue/29&#60;/a&#62;
&#60;/p&#62;&#60;ul&#62;
  &#60;li&#62;Beatitude: Months are listed out of order&#60;/li&#62;&#60;/ul&#62;
&#60;p&#62;&#60;a href=&#34;http://github.com/justingit/dada-mail/issues/issue/28&#34;&#62;http://github.com/justingit/dada-mail/issues/issue/28&#60;/a&#62;
&#60;/p&#62;&#60;ul&#62;
  &#60;li&#62;profile field names can contain more than just ascii letters, numbers and underscores&#60;/li&#62;&#60;/ul&#62;
&#60;p&#62;&#60;a href=&#34;http://github.com/justingit/dada-mail/issues/issue/27&#34;&#62;http://github.com/justingit/dada-mail/issues/issue/27&#60;/a&#62;
&#60;/p&#62;&#60;ul&#62;
  &#60;li&#62;list short names can contain more than just ascii letters, numbers and underscores&#60;/li&#62;&#60;/ul&#62;
&#60;p&#62;&#60;a href=&#34;http://github.com/justingit/dada-mail/issues/issue/26&#34;&#62;http://github.com/justingit/dada-mail/issues/issue/26&#60;/a&#62;
&#60;/p&#62;&#60;ul&#62;
  &#60;li&#62;Beatitude:  Scheduled List Not in Any Useable Order?&#60;/li&#62;&#60;/ul&#62;
&#60;p&#62;&#60;a href=&#34;http://github.com/justingit/dada-mail/issues/issue/16&#34;&#62;http://github.com/justingit/dada-mail/issues/issue/16&#60;/a&#62;
&#60;/p&#62;&#60;ul&#62;
  &#60;li&#62;Dada Bridge: Spam Assassin Level Picker isn't available&#60;/li&#62;&#60;/ul&#62;
&#60;p&#62;&#60;a href=&#34;http://github.com/justingit/dada-mail/issues/issue/21&#34;&#62;http://github.com/justingit/dada-mail/issues/issue/21&#60;/a&#62;
&#60;/p&#62;&#60;ul&#62;
  &#60;li&#62;Sending Preferences don't correctly state if you can use Use Secure Sockets Layer (SSL) for POP-before-SMTP&#60;/li&#62;&#60;/ul&#62;
&#60;p&#62;&#60;a href=&#34;http://github.com/justingit/dada-mail/issues/issue/24&#34;&#62;http://github.com/justingit/dada-mail/issues/issue/24&#60;/a&#62;
&#60;/p&#62;&#60;ul&#62;
  &#60;li&#62;Double Subscriptions when using List Invitation&#60;/li&#62;&#60;/ul&#62;
&#60;p&#62;&#60;a href=&#34;http://github.com/justingit/dada-mail/issues/issue/23&#34;&#62;http://github.com/justingit/dada-mail/issues/issue/23&#60;/a&#62;
&#60;/p&#62;&#60;ul&#62;
  &#60;li&#62;Archived messages not templated out in publicly displayed archives&#60;/li&#62;&#60;/ul&#62;
&#60;p&#62;&#60;a href=&#34;http://github.com/justingit/dada-mail/issues/issue/20&#34;&#62;http://github.com/justingit/dada-mail/issues/issue/20&#60;/a&#62;
&#60;/p&#62;&#60;p&#62;*Link to edit subscriber information broken when using the search
&#60;/p&#62;&#60;p&#62;&#60;a href=&#34;http://github.com/justingit/dada-mail/issues/issue/19&#34;&#62;http://github.com/justingit/dada-mail/issues/issue/19&#60;/a&#62;
&#60;/p&#62;&#60;ul&#62;
  &#60;li&#62;Unsubsciption Notice to List Owner doesn't have subscriber (profile) fields&#60;/li&#62;&#60;/ul&#62;
&#60;p&#62;&#60;a href=&#34;http://github.com/justingit/dada-mail/issues/issue/18&#34;&#62;http://github.com/justingit/dada-mail/issues/issue/18&#60;/a&#62;
&#60;/p&#62;&#60;ul&#62;
  &#60;li&#62;Disabled Menu items return server error when using the, &#38;quot;Classic&#38;quot; session type&#60;/li&#62;&#60;/ul&#62;
&#60;p&#62;&#60;a href=&#34;http://github.com/justingit/dada-mail/issues/issue/15&#34;&#62;http://github.com/justingit/dada-mail/issues/issue/15&#60;/a&#62;
&#60;/p&#62;
&lt;!-- begin subscription_form_widget.tmpl --&gt; 



 

    &lt;form action=&quot;http://dadamailproject.com/cgi-bin/dada/mail.cgi&quot; method=&quot;post&quot;&gt;

 

&lt;fieldset&gt;
&lt;legend&gt;
 Subscribe/Unsubscribe  on Dada Mail Developers
&lt;/legend&gt;

 
    

    &lt;input type=&quot;hidden&quot; name=&quot;list&quot; value=&quot;dadadev&quot; /&gt;


&lt;p&gt;
&lt;label for=&quot;email&quot; style=&quot;width: 7em;float: left;text-align: right;margin-right: 0.5em;display: block&quot; &gt;
Email&amp;nbsp;Address: 
&lt;/label&gt;
 
	&lt;input type=&quot;text&quot; name=&quot;email&quot; id=&quot;email&quot; value=&quot;&quot; /&gt; &lt;span class=&quot;error&quot;&gt;* Required&lt;/span&gt;
 

&lt;/p&gt;

 

	 

 


&lt;hr style=&quot;border-top: 1px solid black;&quot; /&gt; 

 
    &lt;p&gt;
    &lt;label for=&quot;f_s&quot; style=&quot;width: 7em;float: left;text-align: right;margin-right: 0.5em;display: block&quot;&gt;
    Subscribe
    &lt;/label&gt;
    &lt;input type=&quot;radio&quot; name=&quot;f&quot; id=&quot;f_s&quot; value=&quot;subscribe&quot; checked=&quot;checked&quot; /&gt;
    &lt;/p&gt; 
    
    &lt;p&gt; 
    &lt;label for=&quot;f_u&quot; style=&quot;width: 7em;float: left;text-align: right;margin-right: 0.5em;display: block&quot;&gt;Unsubscribe&lt;/label&gt; 
    &lt;input type=&quot;radio&quot; name=&quot;f&quot;  id=&quot;f_u&quot;  value=&quot;unsubscribe&quot;  /&gt;
    &lt;/p&gt;   

 

&lt;hr style=&quot;border-top: 1px solid black;&quot; /&gt; 

&lt;p style=&quot;text-align:right;display:block&quot;&gt;
&lt;input type=&quot;submit&quot; value=&quot;Submit Your Information&quot; class=&quot;processing&quot; /&gt;
&lt;/p&gt; 


 




&lt;/fieldset&gt;
&lt;/form&gt; 



  
&lt;!-- end subscription_form_widget.tmpl --&gt; 
</description>
		 <pubDate>Sat, 13 Mar 2010 02:30:00 GMT</pubDate>
		 <guid>http://dadamailproject.com/cgi-bin/dada/mail.cgi/archive/dadadev/20100312213004/</guid>
		</item>

	
	 
		<item>
		 <title>[dadadev] Dada Mail 4.0.3 Beta 1 Released #perl </title>
		 <link>http://dadamailproject.com/cgi-bin/dada/mail.cgi/archive/dadadev/20100301234003/</link>
		 <description>&#60;p&#62; .0.3 Beta 1 has been released: 
&#60;/p&#62;
&#60;ul&#62;
  &#60;li&#62;&#60;a href=&#34;http://github.com/downloads/justingit/dada-mail/dada-4_0_3-beta1.tar.gz&#34;&#62;http://github.com/downloads/justingit/dada-mail/dada-4_0_3-beta1.tar.gz&#60;/a&#62;
  &#60;/li&#62;&#60;li&#62;&#60;a href=&#34;http://github.com/downloads/justingit/dada-mail/dada-4_0_3-beta1.zip&#34;&#62;http://github.com/downloads/justingit/dada-mail/dada-4_0_3-beta1.zip&#60;/a&#62;&#60;/li&#62;&#60;/ul&#62;
&#60;p&#62;I've merged all the UTF-8/unicode stuff with the master branch (which was just bug fixes) and... that worked, so this is will be what I'll ship as 4.0.3 STABLE in just a little while - provided nothing is found to make it a show-stoper. Below is the change log. It doesn't mention anything about the Unicode/UTF-8 work... which I will... add... soon. 
&#60;/p&#62;&#60;p&#62;4.0.3&#60;br/&#62;
 Changes 4.0.3&#60;br/&#62;
  Changes to Default List Settings&#60;br/&#62;
   We've changed a few of the default list settings, hopefully so that
   everyone has a more pleasant experience, right off the bat:
&#60;/p&#62;&#60;p&#62;  Activate Black List&#60;br/&#62;
   We've enabled the setting to active the Black List, by default.
&#60;/p&#62;&#60;p&#62;   We're also enabling the below settings:
&#60;/p&#62;&#60;ul&#62;
  &#60;li&#62;Move Unsubscribed Subscribers Automatically to the Black List  &#60;/li&#62;&#60;li&#62;Continue to Allow Subscriptions From Subscribers of Black Listed
       Addresses&#60;/li&#62;&#60;/ul&#62;
&#60;p&#62;   You still have the option to change new lists to the previous behavior
   and already created lists will have their previous behavior, if Black
   List Settings have already been edited.
&#60;/p&#62;&#60;p&#62;  Print List-Specific Headers option Removed
   The option, Print List-Specific Headers has been removed from, &#60;em&#62;Mail
   Sending -Advanced Sending Preferences&#60;/em&#62; has been removed, &#60;em&#62;but&#60;/em&#62; the
   functionality has not. All mailing list messages will have these
   headers.
&#60;/p&#62;&#60;p&#62;  Send Unsubscription Confirmation Emails (Closed-Loop Opt-Out) - disabled by default
   Send Unsubscription Confirmation Emails (Closed-Loop Opt-Out) has been
   disabled by default (you can still enable it)
&#60;/p&#62;&#60;p&#62;   This option, when enabled, requires that when someone wants to
   unsubscribe, they have to confirm this unsubscription by clicking on the
   unsubscription confirmation link in a URL sent their subscribed address.
&#60;/p&#62;&#60;p&#62;   When disabled (the new default), they simply have to fill out the
   subscribe/unsubscribe form.
&#60;/p&#62;&#60;p&#62; Subscription and Unsubscription links now include an Email Address
   When available, both the Subscription and Unsubscription links will have
   the potential subscriber's (or unsubscriber's) email address in the link
   itself, so that the user does not have to do the two-step of first
   following the link and then typing in their email address.
&#60;/p&#62;&#60;p&#62;   These links are created per-subscriber (or potential sub/unsub), when
   you use the:
&#60;/p&#62;    
&#60;p&#62;   or,
&#60;/p&#62;    
&#60;p&#62;   tags. Previously, these tags only provided a link to the
   subscription/unsubscription form, without the email address embedded
   within the link itself. There is no way to revert this behaviour, but
   you can still roll your own links, like this:
&#60;/p&#62;&#60;p&#62;   Subscription Link:
&#60;/p&#62;&#60;p&#62;    &#60;a href=&#34;http://dadamailproject.com/cgi-bin/dada/mail.cgi/s/dadadev&#34;&#62;http://dadamailproject.com/cgi-bin/dada/mail.cgi/s/dadadev&#60;/a&#62;
&#60;/p&#62;&#60;p&#62;   Unsubscription Link:
&#60;/p&#62;&#60;p&#62;    &#60;a href=&#34;http://dadamailproject.com/cgi-bin/dada/mail.cgi/u/dadadev&#34;&#62;http://dadamailproject.com/cgi-bin/dada/mail.cgi/u/dadadev&#60;/a&#62;
&#60;/p&#62;&#60;p&#62; Unsubscription Links Now Mandatory for Mass Mailing Messages
   Dada Mail will now do a quick check to make sure that there is a Dada
   Mail Unsubscription link in your mass mailing messages, before sending
   them out.
&#60;/p&#62;&#60;p&#62;   If one is not found, one will be automatically appended to the end of
   your message.
&#60;/p&#62;&#60;p&#62;   It will not be very fancy.
&#60;/p&#62;&#60;p&#62;   We suggest that you make sure that you have a real, valid, Dada Mail
   unsubscription link in your Mailing List Messages.
&#60;/p&#62;&#60;p&#62; Bug Fixes 4.0.3&#60;br/&#62;
  Beatitude:  Scheduled List Not in Any Useable Order?
   &#60;a href=&#34;http://github.com/justingit/dada-mail/issues/issue/16&#34;&#62;http://github.com/justingit/dada-mail/issues/issue/16&#60;/a&#62;
&#60;/p&#62;&#60;p&#62;  Dada Bridge: Spam Assassin Level Picker isn't available
   &#60;a href=&#34;http://github.com/justingit/dada-mail/issues/issue/21&#34;&#62;http://github.com/justingit/dada-mail/issues/issue/21&#60;/a&#62;
&#60;/p&#62;&#60;p&#62;  Sending Preferences don't correctly state if you can use Use Secure Sockets Layer (SSL) for POP-before-SMTP
   &#60;a href=&#34;http://github.com/justingit/dada-mail/issues/issue/24&#34;&#62;http://github.com/justingit/dada-mail/issues/issue/24&#60;/a&#62;
&#60;/p&#62;&#60;p&#62;  Double Subscriptions when using List Invitation
   &#60;a href=&#34;http://github.com/justingit/dada-mail/issues/issue/23&#34;&#62;http://github.com/justingit/dada-mail/issues/issue/23&#60;/a&#62;
&#60;/p&#62;&#60;p&#62;  Archived messages not templated out in publicly displayed archives
   &#60;a href=&#34;http://github.com/justingit/dada-mail/issues/issue/20&#34;&#62;http://github.com/justingit/dada-mail/issues/issue/20&#60;/a&#62;
&#60;/p&#62;&#60;p&#62;  Link to edit subscriber information broken when using the search
   &#60;a href=&#34;http://github.com/justingit/dada-mail/issues/issue/19&#34;&#62;http://github.com/justingit/dada-mail/issues/issue/19&#60;/a&#62;
&#60;/p&#62;&#60;p&#62;  Unsubsciption Notice to List Owner doesn't have subscriber (profile) fields
   &#60;a href=&#34;http://github.com/justingit/dada-mail/issues/issue/18&#34;&#62;http://github.com/justingit/dada-mail/issues/issue/18&#60;/a&#62;
&#60;/p&#62;&#60;p&#62;  Disabled Menu items return server error when using the, &#38;quot;Classic&#38;quot; session type
   &#60;a href=&#34;http://github.com/justingit/dada-mail/issues/issue/15&#34;&#62;http://github.com/justingit/dada-mail/issues/issue/15&#60;/a&#62;
&#60;/p&#62;
&#60;p&#62;Cheers, 
&#60;/p&#62;
&lt;!-- begin subscription_form_widget.tmpl --&gt; 



 

    &lt;form action=&quot;http://dadamailproject.com/cgi-bin/dada/mail.cgi&quot; method=&quot;post&quot;&gt;

 

&lt;fieldset&gt;
&lt;legend&gt;
 Subscribe/Unsubscribe  on Dada Mail Developers
&lt;/legend&gt;

 
    

    &lt;input type=&quot;hidden&quot; name=&quot;list&quot; value=&quot;dadadev&quot; /&gt;


&lt;p&gt;
&lt;label for=&quot;email&quot; style=&quot;width: 7em;float: left;text-align: right;margin-right: 0.5em;display: block&quot; &gt;
Email&amp;nbsp;Address: 
&lt;/label&gt;
 
	&lt;input type=&quot;text&quot; name=&quot;email&quot; id=&quot;email&quot; value=&quot;&quot; /&gt; &lt;span class=&quot;error&quot;&gt;* Required&lt;/span&gt;
 

&lt;/p&gt;

 

	 

 


&lt;hr style=&quot;border-top: 1px solid black;&quot; /&gt; 

 
    &lt;p&gt;
    &lt;label for=&quot;f_s&quot; style=&quot;width: 7em;float: left;text-align: right;margin-right: 0.5em;display: block&quot;&gt;
    Subscribe
    &lt;/label&gt;
    &lt;input type=&quot;radio&quot; name=&quot;f&quot; id=&quot;f_s&quot; value=&quot;subscribe&quot; checked=&quot;checked&quot; /&gt;
    &lt;/p&gt; 
    
    &lt;p&gt; 
    &lt;label for=&quot;f_u&quot; style=&quot;width: 7em;float: left;text-align: right;margin-right: 0.5em;display: block&quot;&gt;Unsubscribe&lt;/label&gt; 
    &lt;input type=&quot;radio&quot; name=&quot;f&quot;  id=&quot;f_u&quot;  value=&quot;unsubscribe&quot;  /&gt;
    &lt;/p&gt;   

 

&lt;hr style=&quot;border-top: 1px solid black;&quot; /&gt; 

&lt;p style=&quot;text-align:right;display:block&quot;&gt;
&lt;input type=&quot;submit&quot; value=&quot;Submit Your Information&quot; class=&quot;processing&quot; /&gt;
&lt;/p&gt; 


 




&lt;/fieldset&gt;
&lt;/form&gt; 



  
&lt;!-- end subscription_form_widget.tmpl --&gt; 
</description>
		 <pubDate>Tue, 02 Mar 2010 04:40:00 GMT</pubDate>
		 <guid>http://dadamailproject.com/cgi-bin/dada/mail.cgi/archive/dadadev/20100301234003/</guid>
		</item>

	
	 
		<item>
		 <title>(no subject)</title>
		 <link>http://dadamailproject.com/cgi-bin/dada/mail.cgi/archive/dadadev/20100226180006/</link>
		 <description>
&#60;p&#62;Other than the Unicode/UTF-8 stuff, I'm going to make the following changes, unless someone has a Major problem with it, and perhaps, even if someone does (but  I'd like to have comments made, before I put out the release) 
&#60;/p&#62;&#60;h1&#62;&#60;a name=&#34;section_1&#34;&#62;Changes 4.0.3&#60;/a&#62;&#60;/h1&#62;
&#60;h1&#62;&#60;a name=&#34;section_2&#34;&#62;Changes to Default List Settings&#60;/a&#62;&#60;/h1&#62;
&#60;p&#62;We've changed a few of the default list settings, hopefully so that everyone has a more pleasant experience, right off the bat:
&#60;/p&#62;&#60;h1&#62;&#60;a name=&#34;section_3&#34;&#62;Activate Black List&#60;/a&#62;&#60;/h1&#62;
&#60;p&#62;We've enabled the setting to active the Black List, by default.
&#60;/p&#62;&#60;p&#62;We're also enabling the below settings:
&#60;/p&#62;&#60;ul&#62;
  &#60;li&#62;Move Unsubscribed Subscribers Automatically to the Black List  &#60;/li&#62;&#60;li&#62;Continue to Allow Subscriptions From Subscribers of Black Listed Addresses&#60;/li&#62;&#60;/ul&#62;
&#60;p&#62;You still have the option to change new lists to the previous behavior and already created lists will have their previous behavior, if Black List Settings have already been edited.
&#60;/p&#62;&#60;h1&#62;&#60;a name=&#34;section_4&#34;&#62;Print List-Specific Headers option Removed&#60;/a&#62;&#60;/h1&#62;
&#60;p&#62;The option, Print List-Specific Headers has been removed from, Mail Sending -Advanced Sending Preferences has been removed, but the functionality has not. All mailing list messages will have these headers.
&#60;/p&#62;&#60;ul&#62;
  &#60;li&#62;Send Unsubscription Confirmation Emails (Closed-Loop Opt-Out) - disabled by default  &#60;/li&#62;&#60;li&#62;Send Unsubscription Confirmation Emails (Closed-Loop Opt-Out) has been disabled by default (you can still enable it) &#60;/li&#62;&#60;/ul&#62;
&#60;p&#62;This option, when enabled, requires that when someone wants to unsubscribe, they have to confirm this unsubscription by clicking on the unsubscription confirmation link in a URL sent their subscribed address.
&#60;/p&#62;&#60;p&#62;When disabled (the new default), they simply have to fill out the subscribe/unsubscribe form.
&#60;/p&#62;&#60;h1&#62;&#60;a name=&#34;section_5&#34;&#62;Subscription and Unsubscription links now include an Email Address&#60;/a&#62;&#60;/h1&#62;
&#60;p&#62;When available, both the Subscription and Unsubscription links will have the potential subscriber's (or unsubscriber's) email address in the link itself, so that the user does not have to do the two-step of first following the link and then typing in their email address.
&#60;/p&#62;
&#60;p&#62;These links are created per-subscriber (or potential sub/unsub), when you use the:
&#60;/p&#62;&#60;p&#62; &#38;lt;!-- tmpl_var list_subscribe_link --&#38;gt;
&#60;/p&#62;&#60;p&#62;or,
&#60;/p&#62;&#60;p&#62; &#38;lt;!-- tmpl_var list_unsubscribe_link --&#38;gt;
&#60;/p&#62;&#60;p&#62;tags. Previously, these tags only provided a link to the subscription/unsubscription form, without the email address embedded within the link itself. There is no way to revert this behaviour, but you can still roll your own links, like this:
&#60;/p&#62;&#60;p&#62;Subscription Link:
&#60;/p&#62;&#60;p&#62; &#38;lt;!-- tmpl_var PROGRAM_URL --&#38;gt;/s/&#38;lt;!-- tmpl_var list_settings.list --&#38;gt;
&#60;/p&#62;&#60;p&#62;Unsubscription Link:
&#60;/p&#62;&#60;p&#62; &#38;lt;!-- tmpl_var PROGRAM_URL --&#38;gt;/u/&#38;lt;!-- tmpl_var list_settings.list --&#38;gt;
&#60;/p&#62;
&#60;p&#62;Unsubscription Links Now Mandatory for Mass Mailing Messages
&#60;/p&#62;&#60;hr/&#62;
&#60;p&#62;Dada Mail will now do a quick check to make sure that there is a Dada Mail Unsubscription link in your mass mailing messages, before sending them out.
&#60;/p&#62;&#60;p&#62;If one is not found, one will be automatically appended to the end of your message.
&#60;/p&#62;&#60;p&#62;It will not be very fancy.
&#60;/p&#62;&#60;p&#62;We suggest that you make sure that you have a real, valid, Dada Mail unsubscription link in your Mailing List Messages.
&#60;/p&#62;
&#60;p&#62;That's about it. These changes are basically to help out subscribers who are having trouble getting unsubscribed and clueless list owners who don't know what they're doing. 
&#60;/p&#62;&#60;p&#62;Whatcha think? 
&#60;/p&#62;
&lt;!-- begin subscription_form_widget.tmpl --&gt; 



 

    &lt;form action=&quot;http://dadamailproject.com/cgi-bin/dada/mail.cgi&quot; method=&quot;post&quot;&gt;

 

&lt;fieldset&gt;
&lt;legend&gt;
 Subscribe/Unsubscribe  on Dada Mail Developers
&lt;/legend&gt;

 
    

    &lt;input type=&quot;hidden&quot; name=&quot;list&quot; value=&quot;dadadev&quot; /&gt;


&lt;p&gt;
&lt;label for=&quot;email&quot; style=&quot;width: 7em;float: left;text-align: right;margin-right: 0.5em;display: block&quot; &gt;
Email&amp;nbsp;Address: 
&lt;/label&gt;
 
	&lt;input type=&quot;text&quot; name=&quot;email&quot; id=&quot;email&quot; value=&quot;&quot; /&gt; &lt;span class=&quot;error&quot;&gt;* Required&lt;/span&gt;
 

&lt;/p&gt;

 

	 

 


&lt;hr style=&quot;border-top: 1px solid black;&quot; /&gt; 

 
    &lt;p&gt;
    &lt;label for=&quot;f_s&quot; style=&quot;width: 7em;float: left;text-align: right;margin-right: 0.5em;display: block&quot;&gt;
    Subscribe
    &lt;/label&gt;
    &lt;input type=&quot;radio&quot; name=&quot;f&quot; id=&quot;f_s&quot; value=&quot;subscribe&quot; checked=&quot;checked&quot; /&gt;
    &lt;/p&gt; 
    
    &lt;p&gt; 
    &lt;label for=&quot;f_u&quot; style=&quot;width: 7em;float: left;text-align: right;margin-right: 0.5em;display: block&quot;&gt;Unsubscribe&lt;/label&gt; 
    &lt;input type=&quot;radio&quot; name=&quot;f&quot;  id=&quot;f_u&quot;  value=&quot;unsubscribe&quot;  /&gt;
    &lt;/p&gt;   

 

&lt;hr style=&quot;border-top: 1px solid black;&quot; /&gt; 

&lt;p style=&quot;text-align:right;display:block&quot;&gt;
&lt;input type=&quot;submit&quot; value=&quot;Submit Your Information&quot; class=&quot;processing&quot; /&gt;
&lt;/p&gt; 


 




&lt;/fieldset&gt;
&lt;/form&gt; 



  
&lt;!-- end subscription_form_widget.tmpl --&gt; 
</description>
		 <pubDate>Fri, 26 Feb 2010 23:00:00 GMT</pubDate>
		 <guid>http://dadamailproject.com/cgi-bin/dada/mail.cgi/archive/dadadev/20100226180006/</guid>
		</item>

	
	 
		<item>
		 <title>(no subject)</title>
		 <link>http://dadamailproject.com/cgi-bin/dada/mail.cgi/archive/dadadev/20100224011503/</link>
		 <description>
&#60;p&#62;Hello everyone, 
&#60;/p&#62;&#60;p&#62;I've finally completely my first try at getting Dada Mail to walk, talk and eat Unicode. 
&#60;/p&#62;&#60;p&#62;This is the first step in the localization project, since we can't very well translate Dada Mail if Dada Mail can't use the translations available. 
&#60;/p&#62;&#60;p&#62;I have to let this project rest for a little bit (and collect my wits - it was a very difficult step!) but any and all feedback is welcome, if you'd like to give this a spin - bug reports/problems of any kind are very much appreciated. 
&#60;/p&#62;&#60;p&#62;This version of Dada Mail should basically be able to support any language that can in the unicode characters set and UTF-8 encoding. Which, should be, well, a lot of them. It doesn't (Dada Mail), but where it fails? I don't know - but it's a good time to test and see where it's wrong. 
&#60;/p&#62;&#60;p&#62;For simple Euro-centric stuff, like this: 
&#60;/p&#62;&#60;p&#62;        Je peux manger du verre, &#38;ccedil;a ne me fait pas mal.
&#60;/p&#62;&#60;p&#62;It should be fine. For something a little more wild: 
        
&#60;/p&#62;&#60;p&#62;        أنا قادر على أكل الزجاج و هذا لا يؤلمني.
&#60;/p&#62;&#60;p&#62;(which should be Arabic)
&#60;/p&#62;&#60;p&#62;Well, I can only go on if something visually looks correct :) Even this email is sort of a test - I don't know if it's going to work, or not - so, fingers crossed! If it does - we're on a good track, since Dada Bridge taking a random email, having it go through the system that's mostly tested using a very specific way of creating emails and coming out readable on the other side is a great big step - not even talking about the online archive, rss/atom feeds, twitter thingie, etc, etc, etc. 
&#60;/p&#62;&#60;p&#62;Here's the download to the version I'm now running at the Dada Mail support site: 
&#60;/p&#62;&#60;p&#62;        &#60;a href=&#34;http://github.com/downloads/justingit/dada-mail/dada-4_0_2-unicode.zip&#34;&#62;http://github.com/downloads/justingit/dada-mail/dada-4_0_2-unicode.zip&#60;/a&#62;
&#60;/p&#62;&#60;p&#62;        &#60;a href=&#34;http://github.com/downloads/justingit/dada-mail/dada-4_0_2-unicode.tar.gz&#34;&#62;http://github.com/downloads/justingit/dada-mail/dada-4_0_2-unicode.tar.gz&#60;/a&#62;
&#60;/p&#62;&#60;p&#62;If you want to check it out via github, the branch is at: 
&#60;/p&#62;&#60;p&#62;        &#60;a href=&#34;http://github.com/justingit/dada-mail/tree/charset_work&#34;&#62;http://github.com/justingit/dada-mail/tree/charset_work&#60;/a&#62;
&#60;/p&#62;&#60;p&#62;To grab it with git, you have to do this: 
&#60;/p&#62;
&#60;p&#62;git clone git://github.com/justingit/dada-mail.git
cd dada-mail&#60;br/&#62;
git fetch&#60;br/&#62;
git checkout --track -b your_local_branch_name origin/charset_work
&#60;/p&#62;
&#60;p&#62;Here's the explanation of all that: 
&#60;/p&#62;&#60;p&#62;&#60;a href=&#34;http://groups.google.com/group/github/browse_thread/thread/71f944b925467ab6&#34;&#62;http://groups.google.com/group/github/browse_thread/thread/71f944b925467ab6&#60;/a&#62;
&#60;/p&#62;&#60;p&#62;There's a guide of what to expect with Dada Mail and unicode/UTF-8 you can read here: 
&#60;/p&#62;&#60;p&#62;        &#60;a href=&#34;http://dadamailproject.com/support/documentation-4_0_2-unicode/features-UTF-8.pod.html&#34;&#62;http://dadamailproject.com/support/documentation-4_0_2-unicode/features-UTF-8.pod.html&#60;/a&#62;
&#60;/p&#62;&#60;p&#62;Which I'll paste the contents of at the end of this message - but you may also want to compare it to the version of this doc for 4.0.2 STABLE: 
&#60;/p&#62;&#60;p&#62;        &#60;a href=&#34;http://dadamailproject.com/support/documentation-4_0_2/features-UTF-8.pod.html&#34;&#62;http://dadamailproject.com/support/documentation-4_0_2/features-UTF-8.pod.html&#60;/a&#62;
&#60;/p&#62;&#60;p&#62;(Long story short: 4.0.2 UTF-8/Unicode Support: &#38;quot;uhh...&#38;quot;) 
&#60;/p&#62;&#60;p&#62;And, that's about it. This was a hard part of the project, since this is a 10+ y/o codebase - it very much pre-dates even unicode/UTF-8 support in Perl itself, so there's a reason, I guess, why the program was in such bad shape when it came to support it. Many, 
&#60;/p&#62;&#60;p&#62;many many bugs showed themselves, once this feature was asked for. I think a great majority of them have been solved. 
&#60;/p&#62;&#60;p&#62;Give it a spin if this interests you and if I can help out with anything, let me know, 
&#60;/p&#62;
&lt;!-- begin subscription_form_widget.tmpl --&gt; 



 

    &lt;form action=&quot;http://dadamailproject.com/cgi-bin/dada/mail.cgi&quot; method=&quot;post&quot;&gt;

 

&lt;fieldset&gt;
&lt;legend&gt;
 Subscribe/Unsubscribe  on Dada Mail Developers
&lt;/legend&gt;

 
    

    &lt;input type=&quot;hidden&quot; name=&quot;list&quot; value=&quot;dadadev&quot; /&gt;


&lt;p&gt;
&lt;label for=&quot;email&quot; style=&quot;width: 7em;float: left;text-align: right;margin-right: 0.5em;display: block&quot; &gt;
Email&amp;nbsp;Address: 
&lt;/label&gt;
 
	&lt;input type=&quot;text&quot; name=&quot;email&quot; id=&quot;email&quot; value=&quot;&quot; /&gt; &lt;span class=&quot;error&quot;&gt;* Required&lt;/span&gt;
 

&lt;/p&gt;

 

	 

 


&lt;hr style=&quot;border-top: 1px solid black;&quot; /&gt; 

 
    &lt;p&gt;
    &lt;label for=&quot;f_s&quot; style=&quot;width: 7em;float: left;text-align: right;margin-right: 0.5em;display: block&quot;&gt;
    Subscribe
    &lt;/label&gt;
    &lt;input type=&quot;radio&quot; name=&quot;f&quot; id=&quot;f_s&quot; value=&quot;subscribe&quot; checked=&quot;checked&quot; /&gt;
    &lt;/p&gt; 
    
    &lt;p&gt; 
    &lt;label for=&quot;f_u&quot; style=&quot;width: 7em;float: left;text-align: right;margin-right: 0.5em;display: block&quot;&gt;Unsubscribe&lt;/label&gt; 
    &lt;input type=&quot;radio&quot; name=&quot;f&quot;  id=&quot;f_u&quot;  value=&quot;unsubscribe&quot;  /&gt;
    &lt;/p&gt;   

 

&lt;hr style=&quot;border-top: 1px solid black;&quot; /&gt; 

&lt;p style=&quot;text-align:right;display:block&quot;&gt;
&lt;input type=&quot;submit&quot; value=&quot;Submit Your Information&quot; class=&quot;processing&quot; /&gt;
&lt;/p&gt; 


 




&lt;/fieldset&gt;
&lt;/form&gt; 



  
&lt;!-- end subscription_form_widget.tmpl --&gt; 
</description>
		 <pubDate>Wed, 24 Feb 2010 06:15:00 GMT</pubDate>
		 <guid>http://dadamailproject.com/cgi-bin/dada/mail.cgi/archive/dadadev/20100224011503/</guid>
		</item>

	
	 
		<item>
		 <title>[dadadev] Re: Email to Cell Phone Text Message</title>
		 <link>http://dadamailproject.com/cgi-bin/dada/mail.cgi/archive/dadadev/20100222190617/</link>
		 <description>
&#60;!--open_img--&#62;&#60;img src=&#34;http://dadamailproject.com/cgi-bin/dada/mail.cgi/spacer_image/dadadev//spacer.png&#34; /&#62;&#60;!--/open_img--&#62;
 
&#60;div dir=&#34;ltr&#34;&#62;I think that most of the US carriers let anyone send like this.  It has worked for all the ones I have tried.&#60;div&#62;&#60;br&#62;&#60;/div&#62;&#60;div&#62;I do know that most of the Israeli carriers do not.&#60;div&#62;&#60;br clear=&#34;all&#34;&#62;------------------------------&#60;br&#62;
Moshe Katz&#60;br&#62;KatzNet Computers&#60;br&#62;-- &#60;a href=&#34;mailto:mos&#60;a href=&#34;http://mailhide.recaptcha.net/d?c=2BvdHOni7zqUWk7NWnZihQ%3d%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#34; onclick=&#34;window.open(&#38;#39;http://mailhide.recaptcha.net/d?c=2BvdHOni7zqUWk7NWnZihQ%3d%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#38;#39;, &#38;#39;&#38;#39;, &#38;#39;height=300,location=0,menubar=0,resizable=0,scrollbars=0,statusbar=0,toolbar=0,width=500&#38;#39;); return false;&#34; title=&#34;Reveal this e-mail address&#34;&#62;...&#60;/a&#62;@ymkatz.net&#34;&#62;mos&#60;a href=&#34;http://mailhide.recaptcha.net/d?c=2BvdHOni7zqUWk7NWnZihQ%3d%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#34; onclick=&#34;window.open(&#38;#39;http://mailhide.recaptcha.net/d?c=2BvdHOni7zqUWk7NWnZihQ%3d%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#38;#39;, &#38;#39;&#38;#39;, &#38;#39;height=300,location=0,menubar=0,resizable=0,scrollbars=0,statusbar=0,toolbar=0,width=500&#38;#39;); return false;&#34; title=&#34;Reveal this e-mail address&#34;&#62;...&#60;/a&#62;@ymkatz.net&#60;/a&#62;&#60;br&#62;-- +1(301)867-3732&#60;br&#62;
&#60;br&#62;&#60;br&#62;&#60;div class=&#34;gmail_quote&#34;&#62;On Mon, Feb 22, 2010 at 4:06 AM, David Leonardi &#60;span dir=&#34;ltr&#34;&#62;&#38;lt;&#60;a href=&#34;mailto:davi&#60;a href=&#34;http://mailhide.recaptcha.net/d?c=NTwgmgB5PGP8vmgQka68RUqZyL1wVJiEOstugdN18dA%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#34; onclick=&#34;window.open(&#38;#39;http://mailhide.recaptcha.net/d?c=NTwgmgB5PGP8vmgQka68RUqZyL1wVJiEOstugdN18dA%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#38;#39;, &#38;#39;&#38;#39;, &#38;#39;height=300,location=0,menubar=0,resizable=0,scrollbars=0,statusbar=0,toolbar=0,width=500&#38;#39;); return false;&#34; title=&#34;Reveal this e-mail address&#34;&#62;...&#60;/a&#62;@gmail.com&#34;&#62;davi&#60;a href=&#34;http://mailhide.recaptcha.net/d?c=NTwgmgB5PGP8vmgQka68RUqZyL1wVJiEOstugdN18dA%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#34; onclick=&#34;window.open(&#38;#39;http://mailhide.recaptcha.net/d?c=NTwgmgB5PGP8vmgQka68RUqZyL1wVJiEOstugdN18dA%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#38;#39;, &#38;#39;&#38;#39;, &#38;#39;height=300,location=0,menubar=0,resizable=0,scrollbars=0,statusbar=0,toolbar=0,width=500&#38;#39;); return false;&#34; title=&#34;Reveal this e-mail address&#34;&#62;...&#60;/a&#62;@gmail.com&#60;/a&#62;&#38;gt;&#60;/span&#62; wrote:&#60;br&#62;&#60;blockquote class=&#34;gmail_quote&#34; style=&#34;margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;&#34;&#62;
 
 


 

&#60;div&#62;
&#60;img&#62;
 
AFAIK to be able to send emails through that gateway, you MUST be sending the email as the user which signed up for the account on the respective website of each telco.&#60;div&#62;&#60;br&#62;&#60;/div&#62;&#60;div&#62;At least, thats how vodafone handles it in europe.&#60;/div&#62;

&#60;div&#62;just a heads up. your mileage may vary.&#60;div&#62;&#60;div&#62;&#60;/div&#62;&#60;div class=&#34;h5&#34;&#62;&#60;br&#62;&#60;br&#62;&#60;div class=&#34;gmail_quote&#34;&#62;On Sun, Feb 21, 2010 at 4:34 AM, Carl G. Kuczun &#60;span dir=&#34;ltr&#34;&#62;&#38;lt;&#60;a href=&#34;mailto:ckuc&#60;a href=&#34;http://mailhide.recaptcha.net/d?c=roMaeroll09iccfSejeNd%2dLmk9VehW3ZSsfqTHLYxUo%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#34; onclick=&#34;window.open(&#38;#39;http://mailhide.recaptcha.net/d?c=roMaeroll09iccfSejeNd%2dLmk9VehW3ZSsfqTHLYxUo%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#38;#39;, &#38;#39;&#38;#39;, &#38;#39;height=300,location=0,menubar=0,resizable=0,scrollbars=0,statusbar=0,toolbar=0,width=500&#38;#39;); return false;&#34; title=&#34;Reveal this e-mail address&#34;&#62;...&#60;/a&#62;@comcast.net&#34; target=&#34;_blank&#34;&#62;ckuc&#60;a href=&#34;http://mailhide.recaptcha.net/d?c=roMaeroll09iccfSejeNd%2dLmk9VehW3ZSsfqTHLYxUo%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#34; onclick=&#34;window.open(&#38;#39;http://mailhide.recaptcha.net/d?c=roMaeroll09iccfSejeNd%2dLmk9VehW3ZSsfqTHLYxUo%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#38;#39;, &#38;#39;&#38;#39;, &#38;#39;height=300,location=0,menubar=0,resizable=0,scrollbars=0,statusbar=0,toolbar=0,width=500&#38;#39;); return false;&#34; title=&#34;Reveal this e-mail address&#34;&#62;...&#60;/a&#62;@comcast.net&#60;/a&#62;&#38;gt;&#60;/span&#62; wrote:&#60;br&#62;

&#60;blockquote class=&#34;gmail_quote&#34; style=&#34;margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex&#34;&#62;






&#60;div bgcolor=&#34;#ffffff&#34;&#62;
&#60;img&#62;

&#60;div&#62;&#60;font size=&#34;2&#34; face=&#34;Arial&#34;&#62;I was asked today to see if I could have emails 
also sent to cell phones as text messages. A perfectly reasonable request since 
we all live by our cell phones. I know that I can send an email to my cell phone 
by appending the cell phone carrier&#38;#39;s text messaging email domain to my phone 
number. For example, if I send an email to the address &#60;/font&#62;&#60;a href=&#34;mailto:1800&#60;a href=&#34;http://mailhide.recaptcha.net/d?c=ZDNaX0vyYRQqVmTV1uHtR0roWmxOm9MU7OAc_8KjfNg%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#34; onclick=&#34;window.open(&#38;#39;http://mailhide.recaptcha.net/d?c=ZDNaX0vyYRQqVmTV1uHtR0roWmxOm9MU7OAc_8KjfNg%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#38;#39;, &#38;#39;&#38;#39;, &#38;#39;height=300,location=0,menubar=0,resizable=0,scrollbars=0,statusbar=0,toolbar=0,width=500&#38;#39;); return false;&#34; title=&#34;Reveal this e-mail address&#34;&#62;...&#60;/a&#62;@vswpix.com&#34; target=&#34;_blank&#34;&#62;&#60;font size=&#34;2&#34; face=&#34;Arial&#34;&#62;1800&#60;a href=&#34;http://mailhide.recaptcha.net/d?c=ZDNaX0vyYRQqVmTV1uHtR0roWmxOm9MU7OAc_8KjfNg%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#34; onclick=&#34;window.open(&#38;#39;http://mailhide.recaptcha.net/d?c=ZDNaX0vyYRQqVmTV1uHtR0roWmxOm9MU7OAc_8KjfNg%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#38;#39;, &#38;#39;&#38;#39;, &#38;#39;height=300,location=0,menubar=0,resizable=0,scrollbars=0,statusbar=0,toolbar=0,width=500&#38;#39;); return false;&#34; title=&#34;Reveal this e-mail address&#34;&#62;...&#60;/a&#62;@vswpix.com&#60;/font&#62;&#60;/a&#62;&#60;font size=&#34;2&#34; face=&#34;Arial&#34;&#62; it will be 
delivered by Verizon as a text message to the phone. Every carrier has their own 
text message domain. Here is a partial list:&#60;/font&#62;&#60;/div&#62;
&#60;div&#62;&#60;font size=&#34;2&#34; face=&#34;Arial&#34;&#62;&#60;/font&#62; &#60;/div&#62;
&#60;p style=&#34;margin:0in 0in 0pt&#34; class=&#34;MsoNormal&#34;&#62;&#60;span style=&#34;font-family:&#38;#39;Courier New&#38;#39;&#34;&#62;Alltel:&#60;span&#62;        
&#60;/span&#62;&#60;a href=&#34;mailto:phon&#60;a href=&#34;http://mailhide.recaptcha.net/d?c=5z7nD0xXJzR7aiq%2d4PSlDFMPFIl%2dpL9OfPFoX9Jx3OM%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#34; onclick=&#34;window.open(&#38;#39;http://mailhide.recaptcha.net/d?c=5z7nD0xXJzR7aiq%2d4PSlDFMPFIl%2dpL9OfPFoX9Jx3OM%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#38;#39;, &#38;#39;&#38;#39;, &#38;#39;height=300,location=0,menubar=0,resizable=0,scrollbars=0,statusbar=0,toolbar=0,width=500&#38;#39;); return false;&#34; title=&#34;Reveal this e-mail address&#34;&#62;...&#60;/a&#62;@message.alltel.com&#34; target=&#34;_blank&#34;&#62;phon&#60;a href=&#34;http://mailhide.recaptcha.net/d?c=5z7nD0xXJzR7aiq%2d4PSlDFMPFIl%2dpL9OfPFoX9Jx3OM%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#34; onclick=&#34;window.open(&#38;#39;http://mailhide.recaptcha.net/d?c=5z7nD0xXJzR7aiq%2d4PSlDFMPFIl%2dpL9OfPFoX9Jx3OM%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#38;#39;, &#38;#39;&#38;#39;, &#38;#39;height=300,location=0,menubar=0,resizable=0,scrollbars=0,statusbar=0,toolbar=0,width=500&#38;#39;); return false;&#34; title=&#34;Reveal this e-mail address&#34;&#62;...&#60;/a&#62;@message.alltel.com&#60;/a&#62;&#60;br&#62;AT&#38;amp;T:&#60;span&#62;          
&#60;/span&#62;&#60;a href=&#34;mailto:phon&#60;a href=&#34;http://mailhide.recaptcha.net/d?c=H8lKKL9S4tfpABMwd8Y%2dv1QJvx4NaZ1Qd7TuNLdCaVM%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#34; onclick=&#34;window.open(&#38;#39;http://mailhide.recaptcha.net/d?c=H8lKKL9S4tfpABMwd8Y%2dv1QJvx4NaZ1Qd7TuNLdCaVM%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#38;#39;, &#38;#39;&#38;#39;, &#38;#39;height=300,location=0,menubar=0,resizable=0,scrollbars=0,statusbar=0,toolbar=0,width=500&#38;#39;); return false;&#34; title=&#34;Reveal this e-mail address&#34;&#62;...&#60;/a&#62;@txt.att.net&#34; target=&#34;_blank&#34;&#62;phon&#60;a href=&#34;http://mailhide.recaptcha.net/d?c=H8lKKL9S4tfpABMwd8Y%2dv1QJvx4NaZ1Qd7TuNLdCaVM%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#34; onclick=&#34;window.open(&#38;#39;http://mailhide.recaptcha.net/d?c=H8lKKL9S4tfpABMwd8Y%2dv1QJvx4NaZ1Qd7TuNLdCaVM%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#38;#39;, &#38;#39;&#38;#39;, &#38;#39;height=300,location=0,menubar=0,resizable=0,scrollbars=0,statusbar=0,toolbar=0,width=500&#38;#39;); return false;&#34; title=&#34;Reveal this e-mail address&#34;&#62;...&#60;/a&#62;@txt.att.net&#60;/a&#62;&#60;/span&#62;&#60;/p&#62;
&#60;p style=&#34;margin:0in 0in 0pt&#34; class=&#34;MsoNormal&#34;&#62;&#60;span style=&#34;font-family:&#38;#39;Courier New&#38;#39;&#34;&#62;Cingular:&#60;span&#62;      
&#60;/span&#62;&#60;a href=&#34;mailto:phon&#60;a href=&#34;http://mailhide.recaptcha.net/d?c=bWd%2dHBHP0dl6zXiXn8uCFSW61JwvXJblhOqe9p0nfZI%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#34; onclick=&#34;window.open(&#38;#39;http://mailhide.recaptcha.net/d?c=bWd%2dHBHP0dl6zXiXn8uCFSW61JwvXJblhOqe9p0nfZI%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#38;#39;, &#38;#39;&#38;#39;, &#38;#39;height=300,location=0,menubar=0,resizable=0,scrollbars=0,statusbar=0,toolbar=0,width=500&#38;#39;); return false;&#34; title=&#34;Reveal this e-mail address&#34;&#62;...&#60;/a&#62;@cingularme.com&#34; target=&#34;_blank&#34;&#62;phon&#60;a href=&#34;http://mailhide.recaptcha.net/d?c=bWd%2dHBHP0dl6zXiXn8uCFSW61JwvXJblhOqe9p0nfZI%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#34; onclick=&#34;window.open(&#38;#39;http://mailhide.recaptcha.net/d?c=bWd%2dHBHP0dl6zXiXn8uCFSW61JwvXJblhOqe9p0nfZI%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#38;#39;, &#38;#39;&#38;#39;, &#38;#39;height=300,location=0,menubar=0,resizable=0,scrollbars=0,statusbar=0,toolbar=0,width=500&#38;#39;); return false;&#34; title=&#34;Reveal this e-mail address&#34;&#62;...&#60;/a&#62;@cingularme.com&#60;/a&#62; &#60;br&#62;Nextel:&#60;span&#62;        
&#60;/span&#62;&#60;a href=&#34;mailto:phon&#60;a href=&#34;http://mailhide.recaptcha.net/d?c=5z7nD0xXJzR7aiq%2d4PSlDP6ijGRFlYAEvHXs_7dZ7Ug%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#34; onclick=&#34;window.open(&#38;#39;http://mailhide.recaptcha.net/d?c=5z7nD0xXJzR7aiq%2d4PSlDP6ijGRFlYAEvHXs_7dZ7Ug%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#38;#39;, &#38;#39;&#38;#39;, &#38;#39;height=300,location=0,menubar=0,resizable=0,scrollbars=0,statusbar=0,toolbar=0,width=500&#38;#39;); return false;&#34; title=&#34;Reveal this e-mail address&#34;&#62;...&#60;/a&#62;@messaging.nextel.com&#34; target=&#34;_blank&#34;&#62;phon&#60;a href=&#34;http://mailhide.recaptcha.net/d?c=5z7nD0xXJzR7aiq%2d4PSlDP6ijGRFlYAEvHXs_7dZ7Ug%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#34; onclick=&#34;window.open(&#38;#39;http://mailhide.recaptcha.net/d?c=5z7nD0xXJzR7aiq%2d4PSlDP6ijGRFlYAEvHXs_7dZ7Ug%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#38;#39;, &#38;#39;&#38;#39;, &#38;#39;height=300,location=0,menubar=0,resizable=0,scrollbars=0,statusbar=0,toolbar=0,width=500&#38;#39;); return false;&#34; title=&#34;Reveal this e-mail address&#34;&#62;...&#60;/a&#62;@messaging.nextel.com&#60;/a&#62; &#60;br&#62;Qwest:&#60;span&#62;    &#60;/span&#62;&#60;span&#62;    &#60;/span&#62;&#60;span&#62; &#60;/span&#62;&#60;a href=&#34;mailto:phon&#60;a href=&#34;http://mailhide.recaptcha.net/d?c=FgankWXFf5T9w88JqA5PpnPMwQYX9%2dopuvO_y2NmcfM%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#34; onclick=&#34;window.open(&#38;#39;http://mailhide.recaptcha.net/d?c=FgankWXFf5T9w88JqA5PpnPMwQYX9%2dopuvO_y2NmcfM%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#38;#39;, &#38;#39;&#38;#39;, &#38;#39;height=300,location=0,menubar=0,resizable=0,scrollbars=0,statusbar=0,toolbar=0,width=500&#38;#39;); return false;&#34; title=&#34;Reveal this e-mail address&#34;&#62;...&#60;/a&#62;@qwestmp.com&#34; target=&#34;_blank&#34;&#62;phon&#60;a href=&#34;http://mailhide.recaptcha.net/d?c=FgankWXFf5T9w88JqA5PpnPMwQYX9%2dopuvO_y2NmcfM%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#34; onclick=&#34;window.open(&#38;#39;http://mailhide.recaptcha.net/d?c=FgankWXFf5T9w88JqA5PpnPMwQYX9%2dopuvO_y2NmcfM%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#38;#39;, &#38;#39;&#38;#39;, &#38;#39;height=300,location=0,menubar=0,resizable=0,scrollbars=0,statusbar=0,toolbar=0,width=500&#38;#39;); return false;&#34; title=&#34;Reveal this e-mail address&#34;&#62;...&#60;/a&#62;@qwestmp.com&#60;/a&#62;&#60;/span&#62;&#60;/p&#62;


&#60;p style=&#34;margin:0in 0in 0pt&#34; class=&#34;MsoNormal&#34;&#62;&#60;span style=&#34;font-family:&#38;#39;Courier New&#38;#39;&#34;&#62;Sprint:&#60;span&#62;        
&#60;/span&#62;&#60;a href=&#34;mailto:phon&#60;a href=&#34;http://mailhide.recaptcha.net/d?c=5z7nD0xXJzR7aiq%2d4PSlDEe99uB6pRiReP7m4T_DphEOe2TfV5AHR3_gk4vSYIkg&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#34; onclick=&#34;window.open(&#38;#39;http://mailhide.recaptcha.net/d?c=5z7nD0xXJzR7aiq%2d4PSlDEe99uB6pRiReP7m4T_DphEOe2TfV5AHR3_gk4vSYIkg&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#38;#39;, &#38;#39;&#38;#39;, &#38;#39;height=300,location=0,menubar=0,resizable=0,scrollbars=0,statusbar=0,toolbar=0,width=500&#38;#39;); return false;&#34; title=&#34;Reveal this e-mail address&#34;&#62;...&#60;/a&#62;@messaging.sprintpcs.com&#34; target=&#34;_blank&#34;&#62;phon&#60;a href=&#34;http://mailhide.recaptcha.net/d?c=5z7nD0xXJzR7aiq%2d4PSlDEe99uB6pRiReP7m4T_DphEOe2TfV5AHR3_gk4vSYIkg&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#34; onclick=&#34;window.open(&#38;#39;http://mailhide.recaptcha.net/d?c=5z7nD0xXJzR7aiq%2d4PSlDEe99uB6pRiReP7m4T_DphEOe2TfV5AHR3_gk4vSYIkg&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#38;#39;, &#38;#39;&#38;#39;, &#38;#39;height=300,location=0,menubar=0,resizable=0,scrollbars=0,statusbar=0,toolbar=0,width=500&#38;#39;); return false;&#34; title=&#34;Reveal this e-mail address&#34;&#62;...&#60;/a&#62;@messaging.sprintpcs.com&#60;/a&#62;&#60;br&#62;T-Mobile:&#60;span&#62;      
&#60;/span&#62;&#60;a href=&#34;mailto:phon&#60;a href=&#34;http://mailhide.recaptcha.net/d?c=Nd%2dzfnRSFu6KftpstVQn_GPGlleH5ClH3KEEddC8EBk%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#34; onclick=&#34;window.open(&#38;#39;http://mailhide.recaptcha.net/d?c=Nd%2dzfnRSFu6KftpstVQn_GPGlleH5ClH3KEEddC8EBk%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#38;#39;, &#38;#39;&#38;#39;, &#38;#39;height=300,location=0,menubar=0,resizable=0,scrollbars=0,statusbar=0,toolbar=0,width=500&#38;#39;); return false;&#34; title=&#34;Reveal this e-mail address&#34;&#62;...&#60;/a&#62;@tmomail.net&#34; target=&#34;_blank&#34;&#62;phon&#60;a href=&#34;http://mailhide.recaptcha.net/d?c=Nd%2dzfnRSFu6KftpstVQn_GPGlleH5ClH3KEEddC8EBk%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#34; onclick=&#34;window.open(&#38;#39;http://mailhide.recaptcha.net/d?c=Nd%2dzfnRSFu6KftpstVQn_GPGlleH5ClH3KEEddC8EBk%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#38;#39;, &#38;#39;&#38;#39;, &#38;#39;height=300,location=0,menubar=0,resizable=0,scrollbars=0,statusbar=0,toolbar=0,width=500&#38;#39;); return false;&#34; title=&#34;Reveal this e-mail address&#34;&#62;...&#60;/a&#62;@tmomail.net&#60;/a&#62; &#60;br&#62;US Cellular:&#60;span&#62;   
&#60;/span&#62;&#60;a href=&#34;mailto:phon&#60;a href=&#34;http://mailhide.recaptcha.net/d?c=avtTq3oCgz64G8GqjdvyZAGb_6dPv7dK2dUvS%2dgEHQs%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#34; onclick=&#34;window.open(&#38;#39;http://mailhide.recaptcha.net/d?c=avtTq3oCgz64G8GqjdvyZAGb_6dPv7dK2dUvS%2dgEHQs%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#38;#39;, &#38;#39;&#38;#39;, &#38;#39;height=300,location=0,menubar=0,resizable=0,scrollbars=0,statusbar=0,toolbar=0,width=500&#38;#39;); return false;&#34; title=&#34;Reveal this e-mail address&#34;&#62;...&#60;/a&#62;@email.uscc.net&#34; target=&#34;_blank&#34;&#62;phon&#60;a href=&#34;http://mailhide.recaptcha.net/d?c=avtTq3oCgz64G8GqjdvyZAGb_6dPv7dK2dUvS%2dgEHQs%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#34; onclick=&#34;window.open(&#38;#39;http://mailhide.recaptcha.net/d?c=avtTq3oCgz64G8GqjdvyZAGb_6dPv7dK2dUvS%2dgEHQs%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#38;#39;, &#38;#39;&#38;#39;, &#38;#39;height=300,location=0,menubar=0,resizable=0,scrollbars=0,statusbar=0,toolbar=0,width=500&#38;#39;); return false;&#34; title=&#34;Reveal this e-mail address&#34;&#62;...&#60;/a&#62;@email.uscc.net&#60;/a&#62;&#60;/span&#62;&#60;/p&#62;
&#60;div&#62;&#60;span style=&#34;font-family:&#38;#39;Courier New&#38;#39;;font-size:12pt&#34;&#62;Verizon:&#60;span&#62;     &#60;/span&#62;&#60;span&#62; &#60;/span&#62;&#60;span&#62; &#60;/span&#62;&#60;a href=&#34;mailto:phon&#60;a href=&#34;http://mailhide.recaptcha.net/d?c=aDsim3VY4iDwZPdYDWUJYP1lsSuVzXLRMEYuqvxnY1Y%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#34; onclick=&#34;window.open(&#38;#39;http://mailhide.recaptcha.net/d?c=aDsim3VY4iDwZPdYDWUJYP1lsSuVzXLRMEYuqvxnY1Y%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#38;#39;, &#38;#39;&#38;#39;, &#38;#39;height=300,location=0,menubar=0,resizable=0,scrollbars=0,statusbar=0,toolbar=0,width=500&#38;#39;); return false;&#34; title=&#34;Reveal this e-mail address&#34;&#62;...&#60;/a&#62;@vzwpix.com&#34; target=&#34;_blank&#34;&#62;phon&#60;a href=&#34;http://mailhide.recaptcha.net/d?c=aDsim3VY4iDwZPdYDWUJYP1lsSuVzXLRMEYuqvxnY1Y%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#34; onclick=&#34;window.open(&#38;#39;http://mailhide.recaptcha.net/d?c=aDsim3VY4iDwZPdYDWUJYP1lsSuVzXLRMEYuqvxnY1Y%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#38;#39;, &#38;#39;&#38;#39;, &#38;#39;height=300,location=0,menubar=0,resizable=0,scrollbars=0,statusbar=0,toolbar=0,width=500&#38;#39;); return false;&#34; title=&#34;Reveal this e-mail address&#34;&#62;...&#60;/a&#62;@vzwpix.com&#60;/a&#62;&#60;br&#62;Virgin Mobile: 
&#60;a href=&#34;mailto:phon&#60;a href=&#34;http://mailhide.recaptcha.net/d?c=hV9HAFeh1zPW1sYV64HOiRx5XpKRZ%2d8IsYPIVXFfOyg%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#34; onclick=&#34;window.open(&#38;#39;http://mailhide.recaptcha.net/d?c=hV9HAFeh1zPW1sYV64HOiRx5XpKRZ%2d8IsYPIVXFfOyg%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#38;#39;, &#38;#39;&#38;#39;, &#38;#39;height=300,location=0,menubar=0,resizable=0,scrollbars=0,statusbar=0,toolbar=0,width=500&#38;#39;); return false;&#34; title=&#34;Reveal this e-mail address&#34;&#62;...&#60;/a&#62;@vmobl.com&#34; target=&#34;_blank&#34;&#62;phon&#60;a href=&#34;http://mailhide.recaptcha.net/d?c=hV9HAFeh1zPW1sYV64HOiRx5XpKRZ%2d8IsYPIVXFfOyg%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#34; onclick=&#34;window.open(&#38;#39;http://mailhide.recaptcha.net/d?c=hV9HAFeh1zPW1sYV64HOiRx5XpKRZ%2d8IsYPIVXFfOyg%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#38;#39;, &#38;#39;&#38;#39;, &#38;#39;height=300,location=0,menubar=0,resizable=0,scrollbars=0,statusbar=0,toolbar=0,width=500&#38;#39;); return false;&#34; title=&#34;Reveal this e-mail address&#34;&#62;...&#60;/a&#62;@vmobl.com&#60;/a&#62;&#60;/span&#62;&#60;/div&#62;
&#60;div&#62;&#60;span style=&#34;font-family:&#38;#39;Courier New&#38;#39;;font-size:12pt&#34;&#62;&#60;/span&#62; &#60;/div&#62;
&#60;div&#62;&#60;span style=&#34;font-family:&#38;#39;Courier New&#38;#39;;font-size:12pt&#34;&#62;&#60;font size=&#34;2&#34; face=&#34;Arial&#34;&#62;So - how could this be implemented using DadaMail? I would 
like to add a subscriber field where people could enter their cell phone number 
if they would also like to receive text messages. There are some 
problems:&#60;/font&#62;&#60;/span&#62;&#60;/div&#62;
&#60;div&#62;&#60;span style=&#34;font-family:&#38;#39;Courier New&#38;#39;;font-size:12pt&#34;&#62;&#60;font size=&#34;2&#34; face=&#34;Arial&#34;&#62;&#60;/font&#62;&#60;/span&#62; &#60;/div&#62;
&#60;div&#62;&#60;span style=&#34;font-family:&#38;#39;Courier New&#38;#39;;font-size:12pt&#34;&#62;&#60;font size=&#34;2&#34; face=&#34;Arial&#34;&#62;1) The phone carrier would would also need to be 
identified. Can a subscriber field be a combo box where a list of providers 
would be presented?&#60;/font&#62;&#60;/span&#62;&#60;/div&#62;
&#60;div&#62;&#60;span style=&#34;font-family:&#38;#39;Courier New&#38;#39;;font-size:12pt&#34;&#62;&#60;font size=&#34;2&#34; face=&#34;Arial&#34;&#62;&#60;/font&#62;&#60;/span&#62; &#60;/div&#62;
&#60;div&#62;&#60;span style=&#34;font-family:&#38;#39;Courier New&#38;#39;;font-size:12pt&#34;&#62;&#60;font size=&#34;2&#34; face=&#34;Arial&#34;&#62;2) The carrier text message domain would need to be appended 
to the phone number to make the &#38;quot;email address.&#38;quot;&#60;/font&#62;&#60;/span&#62;&#60;/div&#62;
&#60;div&#62;&#60;span style=&#34;font-family:&#38;#39;Courier New&#38;#39;;font-size:12pt&#34;&#62;&#60;font size=&#34;2&#34; face=&#34;Arial&#34;&#62;&#60;/font&#62;&#60;/span&#62; &#60;/div&#62;
&#60;div&#62;&#60;span style=&#34;font-family:&#38;#39;Courier New&#38;#39;;font-size:12pt&#34;&#62;&#60;font size=&#34;2&#34; face=&#34;Arial&#34;&#62;3) Can a single list entry have an email also sent 
to another email address from a subscriber field? I could manually add the phone 
&#38;quot;email address&#38;quot; as a second entry in the list, but that raises subscription and 
unsubscription issues.&#60;/font&#62;&#60;/span&#62;&#60;/div&#62;
&#60;div&#62;&#60;span style=&#34;font-family:&#38;#39;Courier New&#38;#39;;font-size:12pt&#34;&#62;&#60;font size=&#34;2&#34; face=&#34;Arial&#34;&#62;&#60;/font&#62;&#60;/span&#62; &#60;/div&#62;
&#60;div&#62;&#60;span style=&#34;font-family:&#38;#39;Courier New&#38;#39;;font-size:12pt&#34;&#62;&#60;font size=&#34;2&#34; face=&#34;Arial&#34;&#62;This might be outside the responsibilities of DadaMail, but I 
thought I would start my quest by presenting the issue here. Any thoughts on 
this? Are there other ways to send emails to text messages?&#60;/font&#62;&#60;/span&#62;&#60;/div&#62;
&#60;div&#62;&#60;span style=&#34;font-family:&#38;#39;Courier New&#38;#39;;font-size:12pt&#34;&#62;&#60;font size=&#34;2&#34; face=&#34;Arial&#34;&#62;&#60;/font&#62;&#60;/span&#62; &#60;/div&#62;
&#60;div&#62;&#60;span style=&#34;font-family:&#38;#39;Courier New&#38;#39;;font-size:12pt&#34;&#62;&#60;font size=&#34;2&#34; face=&#34;Arial&#34;&#62;Carl K.&#60;/font&#62;&#60;/span&#62;&#60;/div&#62;
&#60;div&#62;&#60;span style=&#34;font-family:&#38;#39;Courier New&#38;#39;;font-size:12pt&#34;&#62;&#60;font size=&#34;2&#34; face=&#34;Arial&#34;&#62;&#60;/font&#62;&#60;/span&#62; &#60;/div&#62;




&#60;p&#62;Post: &#60;br&#62;
    &#60;a href=&#34;mailto:dada&#60;a href=&#34;http://mailhide.recaptcha.net/d?c=nLjwdoPw7dJ%2dDRjVpA%2dAqEe_1IjYrAqAWXWwxOe7oTk%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#34; onclick=&#34;window.open(&#38;#39;http://mailhide.recaptcha.net/d?c=nLjwdoPw7dJ%2dDRjVpA%2dAqEe_1IjYrAqAWXWwxOe7oTk%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#38;#39;, &#38;#39;&#38;#39;, &#38;#39;height=300,location=0,menubar=0,resizable=0,scrollbars=0,statusbar=0,toolbar=0,width=500&#38;#39;); return false;&#34; title=&#34;Reveal this e-mail address&#34;&#62;...&#60;/a&#62;@dadamailproject.com&#34; target=&#34;_blank&#34;&#62;
 mailto:dada&#60;a href=&#34;http://mailhide.recaptcha.net/d?c=nLjwdoPw7dJ%2dDRjVpA%2dAqEe_1IjYrAqAWXWwxOe7oTk%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#34; onclick=&#34;window.open(&#38;#39;http://mailhide.recaptcha.net/d?c=nLjwdoPw7dJ%2dDRjVpA%2dAqEe_1IjYrAqAWXWwxOe7oTk%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#38;#39;, &#38;#39;&#38;#39;, &#38;#39;height=300,location=0,menubar=0,resizable=0,scrollbars=0,statusbar=0,toolbar=0,width=500&#38;#39;); return false;&#34; title=&#34;Reveal this e-mail address&#34;&#62;...&#60;/a&#62;@dadamailproject.com
  &#60;/a&#62;
&#60;/p&#62;

&#60;p&#62;Unsubscribe:&#60;br&#62;
  &#60;a href=&#34;http://dadamailproject.com/cgi-bin/dada/mail.cgi/u/dadadev/&#34; target=&#34;_blank&#34;&#62;
     http://dadamailproject.com/cgi-bin/dada/mail.cgi/u/dadadev/
&#60;/a&#62;
&#60;/p&#62;

&#60;p&#62;List Information:&#60;br&#62; 
&#60;a href=&#34;http://dadamailproject.com/cgi-bin/dada/mail.cgi/list/dadadev&#34; target=&#34;_blank&#34;&#62;
     http://dadamailproject.com/cgi-bin/dada/mail.cgi/list/dadadev
&#60;/a&#62;
&#60;/p&#62;


&#60;p&#62;Archive:&#60;br&#62; 
         &#60;a href=&#34;http://dadamailproject.com/cgi-bin/dada/mail.cgi/archive/dadadev&#34; target=&#34;_blank&#34;&#62;
 http://dadamailproject.com/cgi-bin/dada/mail.cgi/archive/dadadev
&#60;/a&#62;


&#60;/p&#62;&#60;p&#62;Developer Info:&#60;br&#62; 
&#60;a href=&#34;http://dev.dadamailproject.com&#34; target=&#34;_blank&#34;&#62;
http://dev.dadamailproject.com
&#60;/a&#62; 
&#60;/p&#62; 



&#60;p&#62;&#60;a href=&#34;http://dadamailproject.com/cgi-bin/dada/mail.cgi/what_is_dada_mail/&#34; target=&#34;_blank&#34;&#62;Mailing List Powered by Dada Mail&#60;/a&#62;&#60;/p&#62;

&#60;p&#62;&#60;/p&#62;&#60;/div&#62;

&#60;/blockquote&#62;&#60;/div&#62;&#60;br&#62;&#60;br clear=&#34;all&#34;&#62;&#60;br&#62;&#60;/div&#62;&#60;/div&#62;-- &#60;br&#62;**********************************************&#60;br&#62;David Leonardi&#60;br&#62;Consultant&#60;br&#62;&#60;br&#62;P.I./Tax Number IT-02466620214&#60;br&#62;&#60;br&#62;GSM[DE] +49 152 2149 2153&#60;br&#62;GSM[FR]: +33 637 098948&#60;br&#62;

GSM[IT]:   +39 347 8913690&#60;br&#62;E-Mail:      &#60;a href=&#34;mailto:davi&#60;a href=&#34;http://mailhide.recaptcha.net/d?c=NTwgmgB5PGP8vmgQka68RUqZyL1wVJiEOstugdN18dA%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#34; onclick=&#34;window.open(&#38;#39;http://mailhide.recaptcha.net/d?c=NTwgmgB5PGP8vmgQka68RUqZyL1wVJiEOstugdN18dA%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#38;#39;, &#38;#39;&#38;#39;, &#38;#39;height=300,location=0,menubar=0,resizable=0,scrollbars=0,statusbar=0,toolbar=0,width=500&#38;#39;); return false;&#34; title=&#34;Reveal this e-mail address&#34;&#62;...&#60;/a&#62;@gmail.com&#34; target=&#34;_blank&#34;&#62;davi&#60;a href=&#34;http://mailhide.recaptcha.net/d?c=NTwgmgB5PGP8vmgQka68RUqZyL1wVJiEOstugdN18dA%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#34; onclick=&#34;window.open(&#38;#39;http://mailhide.recaptcha.net/d?c=NTwgmgB5PGP8vmgQka68RUqZyL1wVJiEOstugdN18dA%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#38;#39;, &#38;#39;&#38;#39;, &#38;#39;height=300,location=0,menubar=0,resizable=0,scrollbars=0,statusbar=0,toolbar=0,width=500&#38;#39;); return false;&#34; title=&#34;Reveal this e-mail address&#34;&#62;...&#60;/a&#62;@gmail.com&#60;/a&#62;&#60;br&#62;Skype:      David Leonardi (S3thxx)&#60;br&#62;**********************************************&#60;br&#62;
&#60;br&#62;&#60;br&#62;
&#60;/div&#62;&#60;div class=&#34;im&#34;&#62;





&#60;p&#62;Post: &#60;br&#62;
    &#60;a href=&#34;mailto:dada&#60;a href=&#34;http://mailhide.recaptcha.net/d?c=nLjwdoPw7dJ%2dDRjVpA%2dAqEe_1IjYrAqAWXWwxOe7oTk%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#34; onclick=&#34;window.open(&#38;#39;http://mailhide.recaptcha.net/d?c=nLjwdoPw7dJ%2dDRjVpA%2dAqEe_1IjYrAqAWXWwxOe7oTk%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#38;#39;, &#38;#39;&#38;#39;, &#38;#39;height=300,location=0,menubar=0,resizable=0,scrollbars=0,statusbar=0,toolbar=0,width=500&#38;#39;); return false;&#34; title=&#34;Reveal this e-mail address&#34;&#62;...&#60;/a&#62;@dadamailproject.com&#34; target=&#34;_blank&#34;&#62;
 mailto:dada&#60;a href=&#34;http://mailhide.recaptcha.net/d?c=nLjwdoPw7dJ%2dDRjVpA%2dAqEe_1IjYrAqAWXWwxOe7oTk%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#34; onclick=&#34;window.open(&#38;#39;http://mailhide.recaptcha.net/d?c=nLjwdoPw7dJ%2dDRjVpA%2dAqEe_1IjYrAqAWXWwxOe7oTk%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#38;#39;, &#38;#39;&#38;#39;, &#38;#39;height=300,location=0,menubar=0,resizable=0,scrollbars=0,statusbar=0,toolbar=0,width=500&#38;#39;); return false;&#34; title=&#34;Reveal this e-mail address&#34;&#62;...&#60;/a&#62;@dadamailproject.com
  &#60;/a&#62;
&#60;/p&#62;

&#60;p&#62;Unsubscribe:&#60;br&#62;
  &#60;a href=&#34;http://dadamailproject.com/cgi-bin/dada/mail.cgi/u/dadadev/&#34; target=&#34;_blank&#34;&#62;
     http://dadamailproject.com/cgi-bin/dada/mail.cgi/u/dadadev/
&#60;/a&#62;
&#60;/p&#62;

&#60;p&#62;List Information:&#60;br&#62; 
&#60;a href=&#34;http://dadamailproject.com/cgi-bin/dada/mail.cgi/list/dadadev&#34; target=&#34;_blank&#34;&#62;
     http://dadamailproject.com/cgi-bin/dada/mail.cgi/list/dadadev
&#60;/a&#62;
&#60;/p&#62;


&#60;p&#62;Archive:&#60;br&#62; 
         &#60;a href=&#34;http://dadamailproject.com/cgi-bin/dada/mail.cgi/archive/dadadev&#34; target=&#34;_blank&#34;&#62;
 http://dadamailproject.com/cgi-bin/dada/mail.cgi/archive/dadadev
&#60;/a&#62;


&#60;/p&#62;&#60;p&#62;Developer Info:&#60;br&#62; 
&#60;a href=&#34;http://dev.dadamailproject.com&#34; target=&#34;_blank&#34;&#62;
http://dev.dadamailproject.com
&#60;/a&#62; 
&#60;/p&#62; 



&#60;p&#62;&#60;a href=&#34;http://dadamailproject.com/cgi-bin/dada/mail.cgi/what_is_dada_mail/&#34; target=&#34;_blank&#34;&#62;Mailing List Powered by Dada Mail&#60;/a&#62;&#60;/p&#62;


&#60;p&#62;&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;
 
 
			&#60;/blockquote&#62;&#60;/div&#62;&#60;br&#62;&#60;/div&#62;&#60;/div&#62;&#60;/div&#62;







&lt;!-- begin subscription_form_widget.tmpl --&gt; 



 

    &lt;form action=&quot;http://dadamailproject.com/cgi-bin/dada/mail.cgi&quot; method=&quot;post&quot;&gt;

 

&lt;fieldset&gt;
&lt;legend&gt;
 Subscribe/Unsubscribe  on Dada Mail Developers
&lt;/legend&gt;

 
    

    &lt;input type=&quot;hidden&quot; name=&quot;list&quot; value=&quot;dadadev&quot; /&gt;


&lt;p&gt;
&lt;label for=&quot;email&quot; style=&quot;width: 7em;float: left;text-align: right;margin-right: 0.5em;display: block&quot; &gt;
Email&amp;nbsp;Address: 
&lt;/label&gt;
 
	&lt;input type=&quot;text&quot; name=&quot;email&quot; id=&quot;email&quot; value=&quot;&quot; /&gt; &lt;span class=&quot;error&quot;&gt;* Required&lt;/span&gt;
 

&lt;/p&gt;

 

	 

 


&lt;hr style=&quot;border-top: 1px solid black;&quot; /&gt; 

 
    &lt;p&gt;
    &lt;label for=&quot;f_s&quot; style=&quot;width: 7em;float: left;text-align: right;margin-right: 0.5em;display: block&quot;&gt;
    Subscribe
    &lt;/label&gt;
    &lt;input type=&quot;radio&quot; name=&quot;f&quot; id=&quot;f_s&quot; value=&quot;subscribe&quot; checked=&quot;checked&quot; /&gt;
    &lt;/p&gt; 
    
    &lt;p&gt; 
    &lt;label for=&quot;f_u&quot; style=&quot;width: 7em;float: left;text-align: right;margin-right: 0.5em;display: block&quot;&gt;Unsubscribe&lt;/label&gt; 
    &lt;input type=&quot;radio&quot; name=&quot;f&quot;  id=&quot;f_u&quot;  value=&quot;unsubscribe&quot;  /&gt;
    &lt;/p&gt;   

 

&lt;hr style=&quot;border-top: 1px solid black;&quot; /&gt; 

&lt;p style=&quot;text-align:right;display:block&quot;&gt;
&lt;input type=&quot;submit&quot; value=&quot;Submit Your Information&quot; class=&quot;processing&quot; /&gt;
&lt;/p&gt; 


 




&lt;/fieldset&gt;
&lt;/form&gt; 



  
&lt;!-- end subscription_form_widget.tmpl --&gt; 
</description>
		 <pubDate>Tue, 23 Feb 2010 00:06:00 GMT</pubDate>
		 <guid>http://dadamailproject.com/cgi-bin/dada/mail.cgi/archive/dadadev/20100222190617/</guid>
		</item>

	
	 
		<item>
		 <title>[dadadev] Re: Email to Cell Phone Text Message</title>
		 <link>http://dadamailproject.com/cgi-bin/dada/mail.cgi/archive/dadadev/20100222190603/</link>
		 <description>
&#60;!--open_img--&#62;&#60;img src=&#34;http://dadamailproject.com/cgi-bin/dada/mail.cgi/spacer_image/dadadev//spacer.png&#34; /&#62;&#60;!--/open_img--&#62;
 
&#60;div dir=&#34;ltr&#34;&#62;In the United States, anyone can send mail through the Email-&#38;gt;SMS gateways provided by the phone company.&#60;div&#62;&#60;br&#62;&#60;div class=&#34;gmail_quote&#34;&#62;On Mon, Feb 22, 2010 at 4:07 AM, David Leonardi &#60;span dir=&#34;ltr&#34;&#62;&#38;lt;&#60;a href=&#34;mailto:davi&#60;a href=&#34;http://mailhide.recaptcha.net/d?c=NTwgmgB5PGP8vmgQka68RUqZyL1wVJiEOstugdN18dA%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#34; onclick=&#34;window.open(&#38;#39;http://mailhide.recaptcha.net/d?c=NTwgmgB5PGP8vmgQka68RUqZyL1wVJiEOstugdN18dA%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#38;#39;, &#38;#39;&#38;#39;, &#38;#39;height=300,location=0,menubar=0,resizable=0,scrollbars=0,statusbar=0,toolbar=0,width=500&#38;#39;); return false;&#34; title=&#34;Reveal this e-mail address&#34;&#62;...&#60;/a&#62;@gmail.com&#34;&#62;davi&#60;a href=&#34;http://mailhide.recaptcha.net/d?c=NTwgmgB5PGP8vmgQka68RUqZyL1wVJiEOstugdN18dA%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#34; onclick=&#34;window.open(&#38;#39;http://mailhide.recaptcha.net/d?c=NTwgmgB5PGP8vmgQka68RUqZyL1wVJiEOstugdN18dA%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#38;#39;, &#38;#39;&#38;#39;, &#38;#39;height=300,location=0,menubar=0,resizable=0,scrollbars=0,statusbar=0,toolbar=0,width=500&#38;#39;); return false;&#34; title=&#34;Reveal this e-mail address&#34;&#62;...&#60;/a&#62;@gmail.com&#60;/a&#62;&#38;gt;&#60;/span&#62; wrote:&#60;br&#62;

&#60;blockquote class=&#34;gmail_quote&#34; style=&#34;margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;&#34;&#62; 
 


 

&#60;div&#62;
&#60;img&#62;
 
AFAIK to be able to send emails through that gateway, you MUST be sending the email as the user which signed up for the account on the respective website of each telco.&#60;div&#62;&#60;br&#62;&#60;/div&#62;&#60;div&#62;At least, thats how vodafone handles it in europe.&#60;/div&#62;


&#60;div&#62;just a heads up. your mileage may vary.&#60;div&#62;&#60;div&#62;&#60;/div&#62;&#60;div class=&#34;h5&#34;&#62;&#60;br&#62;&#60;br&#62;&#60;div class=&#34;gmail_quote&#34;&#62;On Sun, Feb 21, 2010 at 4:34 AM, Carl G. Kuczun &#60;span dir=&#34;ltr&#34;&#62;&#38;lt;&#60;a href=&#34;mailto:ckuc&#60;a href=&#34;http://mailhide.recaptcha.net/d?c=roMaeroll09iccfSejeNd%2dLmk9VehW3ZSsfqTHLYxUo%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#34; onclick=&#34;window.open(&#38;#39;http://mailhide.recaptcha.net/d?c=roMaeroll09iccfSejeNd%2dLmk9VehW3ZSsfqTHLYxUo%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#38;#39;, &#38;#39;&#38;#39;, &#38;#39;height=300,location=0,menubar=0,resizable=0,scrollbars=0,statusbar=0,toolbar=0,width=500&#38;#39;); return false;&#34; title=&#34;Reveal this e-mail address&#34;&#62;...&#60;/a&#62;@comcast.net&#34; target=&#34;_blank&#34;&#62;ckuc&#60;a href=&#34;http://mailhide.recaptcha.net/d?c=roMaeroll09iccfSejeNd%2dLmk9VehW3ZSsfqTHLYxUo%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#34; onclick=&#34;window.open(&#38;#39;http://mailhide.recaptcha.net/d?c=roMaeroll09iccfSejeNd%2dLmk9VehW3ZSsfqTHLYxUo%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#38;#39;, &#38;#39;&#38;#39;, &#38;#39;height=300,location=0,menubar=0,resizable=0,scrollbars=0,statusbar=0,toolbar=0,width=500&#38;#39;); return false;&#34; title=&#34;Reveal this e-mail address&#34;&#62;...&#60;/a&#62;@comcast.net&#60;/a&#62;&#38;gt;&#60;/span&#62; wrote:&#60;br&#62;


&#60;blockquote class=&#34;gmail_quote&#34; style=&#34;margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex&#34;&#62;






&#60;div bgcolor=&#34;#ffffff&#34;&#62;
&#60;img&#62;

&#60;div&#62;&#60;font size=&#34;2&#34; face=&#34;Arial&#34;&#62;I was asked today to see if I could have emails 
also sent to cell phones as text messages. A perfectly reasonable request since 
we all live by our cell phones. I know that I can send an email to my cell phone 
by appending the cell phone carrier&#38;#39;s text messaging email domain to my phone 
number. For example, if I send an email to the address &#60;/font&#62;&#60;a href=&#34;mailto:1800&#60;a href=&#34;http://mailhide.recaptcha.net/d?c=ZDNaX0vyYRQqVmTV1uHtR0roWmxOm9MU7OAc_8KjfNg%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#34; onclick=&#34;window.open(&#38;#39;http://mailhide.recaptcha.net/d?c=ZDNaX0vyYRQqVmTV1uHtR0roWmxOm9MU7OAc_8KjfNg%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#38;#39;, &#38;#39;&#38;#39;, &#38;#39;height=300,location=0,menubar=0,resizable=0,scrollbars=0,statusbar=0,toolbar=0,width=500&#38;#39;); return false;&#34; title=&#34;Reveal this e-mail address&#34;&#62;...&#60;/a&#62;@vswpix.com&#34; target=&#34;_blank&#34;&#62;&#60;font size=&#34;2&#34; face=&#34;Arial&#34;&#62;1800&#60;a href=&#34;http://mailhide.recaptcha.net/d?c=ZDNaX0vyYRQqVmTV1uHtR0roWmxOm9MU7OAc_8KjfNg%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#34; onclick=&#34;window.open(&#38;#39;http://mailhide.recaptcha.net/d?c=ZDNaX0vyYRQqVmTV1uHtR0roWmxOm9MU7OAc_8KjfNg%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#38;#39;, &#38;#39;&#38;#39;, &#38;#39;height=300,location=0,menubar=0,resizable=0,scrollbars=0,statusbar=0,toolbar=0,width=500&#38;#39;); return false;&#34; title=&#34;Reveal this e-mail address&#34;&#62;...&#60;/a&#62;@vswpix.com&#60;/font&#62;&#60;/a&#62;&#60;font size=&#34;2&#34; face=&#34;Arial&#34;&#62; it will be 
delivered by Verizon as a text message to the phone. Every carrier has their own 
text message domain. Here is�a partial list:&#60;/font&#62;&#60;/div&#62;
&#60;div&#62;&#60;font size=&#34;2&#34; face=&#34;Arial&#34;&#62;&#60;/font&#62;�&#60;/div&#62;
&#60;p style=&#34;margin:0in 0in 0pt&#34; class=&#34;MsoNormal&#34;&#62;&#60;span style=&#34;font-family:&#38;#39;Courier New&#38;#39;&#34;&#62;Alltel:&#60;span&#62;������� 
&#60;/span&#62;&#60;a href=&#34;mailto:phon&#60;a href=&#34;http://mailhide.recaptcha.net/d?c=5z7nD0xXJzR7aiq%2d4PSlDFMPFIl%2dpL9OfPFoX9Jx3OM%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#34; onclick=&#34;window.open(&#38;#39;http://mailhide.recaptcha.net/d?c=5z7nD0xXJzR7aiq%2d4PSlDFMPFIl%2dpL9OfPFoX9Jx3OM%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#38;#39;, &#38;#39;&#38;#39;, &#38;#39;height=300,location=0,menubar=0,resizable=0,scrollbars=0,statusbar=0,toolbar=0,width=500&#38;#39;); return false;&#34; title=&#34;Reveal this e-mail address&#34;&#62;...&#60;/a&#62;@message.alltel.com&#34; target=&#34;_blank&#34;&#62;phon&#60;a href=&#34;http://mailhide.recaptcha.net/d?c=5z7nD0xXJzR7aiq%2d4PSlDFMPFIl%2dpL9OfPFoX9Jx3OM%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#34; onclick=&#34;window.open(&#38;#39;http://mailhide.recaptcha.net/d?c=5z7nD0xXJzR7aiq%2d4PSlDFMPFIl%2dpL9OfPFoX9Jx3OM%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#38;#39;, &#38;#39;&#38;#39;, &#38;#39;height=300,location=0,menubar=0,resizable=0,scrollbars=0,statusbar=0,toolbar=0,width=500&#38;#39;); return false;&#34; title=&#34;Reveal this e-mail address&#34;&#62;...&#60;/a&#62;@message.alltel.com&#60;/a&#62;&#60;br&#62;AT&#38;amp;T:&#60;span&#62;��������� 
&#60;/span&#62;&#60;a href=&#34;mailto:phon&#60;a href=&#34;http://mailhide.recaptcha.net/d?c=H8lKKL9S4tfpABMwd8Y%2dv1QJvx4NaZ1Qd7TuNLdCaVM%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#34; onclick=&#34;window.open(&#38;#39;http://mailhide.recaptcha.net/d?c=H8lKKL9S4tfpABMwd8Y%2dv1QJvx4NaZ1Qd7TuNLdCaVM%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#38;#39;, &#38;#39;&#38;#39;, &#38;#39;height=300,location=0,menubar=0,resizable=0,scrollbars=0,statusbar=0,toolbar=0,width=500&#38;#39;); return false;&#34; title=&#34;Reveal this e-mail address&#34;&#62;...&#60;/a&#62;@txt.att.net&#34; target=&#34;_blank&#34;&#62;phon&#60;a href=&#34;http://mailhide.recaptcha.net/d?c=H8lKKL9S4tfpABMwd8Y%2dv1QJvx4NaZ1Qd7TuNLdCaVM%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#34; onclick=&#34;window.open(&#38;#39;http://mailhide.recaptcha.net/d?c=H8lKKL9S4tfpABMwd8Y%2dv1QJvx4NaZ1Qd7TuNLdCaVM%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#38;#39;, &#38;#39;&#38;#39;, &#38;#39;height=300,location=0,menubar=0,resizable=0,scrollbars=0,statusbar=0,toolbar=0,width=500&#38;#39;); return false;&#34; title=&#34;Reveal this e-mail address&#34;&#62;...&#60;/a&#62;@txt.att.net&#60;/a&#62;&#60;/span&#62;&#60;/p&#62;
&#60;p style=&#34;margin:0in 0in 0pt&#34; class=&#34;MsoNormal&#34;&#62;&#60;span style=&#34;font-family:&#38;#39;Courier New&#38;#39;&#34;&#62;Cingular:&#60;span&#62;����� 
&#60;/span&#62;&#60;a href=&#34;mailto:phon&#60;a href=&#34;http://mailhide.recaptcha.net/d?c=bWd%2dHBHP0dl6zXiXn8uCFSW61JwvXJblhOqe9p0nfZI%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#34; onclick=&#34;window.open(&#38;#39;http://mailhide.recaptcha.net/d?c=bWd%2dHBHP0dl6zXiXn8uCFSW61JwvXJblhOqe9p0nfZI%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#38;#39;, &#38;#39;&#38;#39;, &#38;#39;height=300,location=0,menubar=0,resizable=0,scrollbars=0,statusbar=0,toolbar=0,width=500&#38;#39;); return false;&#34; title=&#34;Reveal this e-mail address&#34;&#62;...&#60;/a&#62;@cingularme.com&#34; target=&#34;_blank&#34;&#62;phon&#60;a href=&#34;http://mailhide.recaptcha.net/d?c=bWd%2dHBHP0dl6zXiXn8uCFSW61JwvXJblhOqe9p0nfZI%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#34; onclick=&#34;window.open(&#38;#39;http://mailhide.recaptcha.net/d?c=bWd%2dHBHP0dl6zXiXn8uCFSW61JwvXJblhOqe9p0nfZI%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#38;#39;, &#38;#39;&#38;#39;, &#38;#39;height=300,location=0,menubar=0,resizable=0,scrollbars=0,statusbar=0,toolbar=0,width=500&#38;#39;); return false;&#34; title=&#34;Reveal this e-mail address&#34;&#62;...&#60;/a&#62;@cingularme.com&#60;/a&#62; &#60;br&#62;Nextel:&#60;span&#62;������� 
&#60;/span&#62;&#60;a href=&#34;mailto:phon&#60;a href=&#34;http://mailhide.recaptcha.net/d?c=5z7nD0xXJzR7aiq%2d4PSlDP6ijGRFlYAEvHXs_7dZ7Ug%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#34; onclick=&#34;window.open(&#38;#39;http://mailhide.recaptcha.net/d?c=5z7nD0xXJzR7aiq%2d4PSlDP6ijGRFlYAEvHXs_7dZ7Ug%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#38;#39;, &#38;#39;&#38;#39;, &#38;#39;height=300,location=0,menubar=0,resizable=0,scrollbars=0,statusbar=0,toolbar=0,width=500&#38;#39;); return false;&#34; title=&#34;Reveal this e-mail address&#34;&#62;...&#60;/a&#62;@messaging.nextel.com&#34; target=&#34;_blank&#34;&#62;phon&#60;a href=&#34;http://mailhide.recaptcha.net/d?c=5z7nD0xXJzR7aiq%2d4PSlDP6ijGRFlYAEvHXs_7dZ7Ug%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#34; onclick=&#34;window.open(&#38;#39;http://mailhide.recaptcha.net/d?c=5z7nD0xXJzR7aiq%2d4PSlDP6ijGRFlYAEvHXs_7dZ7Ug%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#38;#39;, &#38;#39;&#38;#39;, &#38;#39;height=300,location=0,menubar=0,resizable=0,scrollbars=0,statusbar=0,toolbar=0,width=500&#38;#39;); return false;&#34; title=&#34;Reveal this e-mail address&#34;&#62;...&#60;/a&#62;@messaging.nextel.com&#60;/a&#62; &#60;br&#62;Qwest:&#60;span&#62;��� &#60;/span&#62;&#60;span&#62;����&#60;/span&#62;&#60;span&#62;�&#60;/span&#62;&#60;a href=&#34;mailto:phon&#60;a href=&#34;http://mailhide.recaptcha.net/d?c=FgankWXFf5T9w88JqA5PpnPMwQYX9%2dopuvO_y2NmcfM%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#34; onclick=&#34;window.open(&#38;#39;http://mailhide.recaptcha.net/d?c=FgankWXFf5T9w88JqA5PpnPMwQYX9%2dopuvO_y2NmcfM%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#38;#39;, &#38;#39;&#38;#39;, &#38;#39;height=300,location=0,menubar=0,resizable=0,scrollbars=0,statusbar=0,toolbar=0,width=500&#38;#39;); return false;&#34; title=&#34;Reveal this e-mail address&#34;&#62;...&#60;/a&#62;@qwestmp.com&#34; target=&#34;_blank&#34;&#62;phon&#60;a href=&#34;http://mailhide.recaptcha.net/d?c=FgankWXFf5T9w88JqA5PpnPMwQYX9%2dopuvO_y2NmcfM%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#34; onclick=&#34;window.open(&#38;#39;http://mailhide.recaptcha.net/d?c=FgankWXFf5T9w88JqA5PpnPMwQYX9%2dopuvO_y2NmcfM%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#38;#39;, &#38;#39;&#38;#39;, &#38;#39;height=300,location=0,menubar=0,resizable=0,scrollbars=0,statusbar=0,toolbar=0,width=500&#38;#39;); return false;&#34; title=&#34;Reveal this e-mail address&#34;&#62;...&#60;/a&#62;@qwestmp.com&#60;/a&#62;&#60;/span&#62;&#60;/p&#62;



&#60;p style=&#34;margin:0in 0in 0pt&#34; class=&#34;MsoNormal&#34;&#62;&#60;span style=&#34;font-family:&#38;#39;Courier New&#38;#39;&#34;&#62;Sprint:&#60;span&#62;������� 
&#60;/span&#62;&#60;a href=&#34;mailto:phon&#60;a href=&#34;http://mailhide.recaptcha.net/d?c=5z7nD0xXJzR7aiq%2d4PSlDEe99uB6pRiReP7m4T_DphEOe2TfV5AHR3_gk4vSYIkg&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#34; onclick=&#34;window.open(&#38;#39;http://mailhide.recaptcha.net/d?c=5z7nD0xXJzR7aiq%2d4PSlDEe99uB6pRiReP7m4T_DphEOe2TfV5AHR3_gk4vSYIkg&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#38;#39;, &#38;#39;&#38;#39;, &#38;#39;height=300,location=0,menubar=0,resizable=0,scrollbars=0,statusbar=0,toolbar=0,width=500&#38;#39;); return false;&#34; title=&#34;Reveal this e-mail address&#34;&#62;...&#60;/a&#62;@messaging.sprintpcs.com&#34; target=&#34;_blank&#34;&#62;phon&#60;a href=&#34;http://mailhide.recaptcha.net/d?c=5z7nD0xXJzR7aiq%2d4PSlDEe99uB6pRiReP7m4T_DphEOe2TfV5AHR3_gk4vSYIkg&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#34; onclick=&#34;window.open(&#38;#39;http://mailhide.recaptcha.net/d?c=5z7nD0xXJzR7aiq%2d4PSlDEe99uB6pRiReP7m4T_DphEOe2TfV5AHR3_gk4vSYIkg&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#38;#39;, &#38;#39;&#38;#39;, &#38;#39;height=300,location=0,menubar=0,resizable=0,scrollbars=0,statusbar=0,toolbar=0,width=500&#38;#39;); return false;&#34; title=&#34;Reveal this e-mail address&#34;&#62;...&#60;/a&#62;@messaging.sprintpcs.com&#60;/a&#62;&#60;br&#62;T-Mobile:&#60;span&#62;����� 
&#60;/span&#62;&#60;a href=&#34;mailto:phon&#60;a href=&#34;http://mailhide.recaptcha.net/d?c=Nd%2dzfnRSFu6KftpstVQn_GPGlleH5ClH3KEEddC8EBk%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#34; onclick=&#34;window.open(&#38;#39;http://mailhide.recaptcha.net/d?c=Nd%2dzfnRSFu6KftpstVQn_GPGlleH5ClH3KEEddC8EBk%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#38;#39;, &#38;#39;&#38;#39;, &#38;#39;height=300,location=0,menubar=0,resizable=0,scrollbars=0,statusbar=0,toolbar=0,width=500&#38;#39;); return false;&#34; title=&#34;Reveal this e-mail address&#34;&#62;...&#60;/a&#62;@tmomail.net&#34; target=&#34;_blank&#34;&#62;phon&#60;a href=&#34;http://mailhide.recaptcha.net/d?c=Nd%2dzfnRSFu6KftpstVQn_GPGlleH5ClH3KEEddC8EBk%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#34; onclick=&#34;window.open(&#38;#39;http://mailhide.recaptcha.net/d?c=Nd%2dzfnRSFu6KftpstVQn_GPGlleH5ClH3KEEddC8EBk%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#38;#39;, &#38;#39;&#38;#39;, &#38;#39;height=300,location=0,menubar=0,resizable=0,scrollbars=0,statusbar=0,toolbar=0,width=500&#38;#39;); return false;&#34; title=&#34;Reveal this e-mail address&#34;&#62;...&#60;/a&#62;@tmomail.net&#60;/a&#62; &#60;br&#62;US Cellular:&#60;span&#62;�� 
&#60;/span&#62;&#60;a href=&#34;mailto:phon&#60;a href=&#34;http://mailhide.recaptcha.net/d?c=avtTq3oCgz64G8GqjdvyZAGb_6dPv7dK2dUvS%2dgEHQs%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#34; onclick=&#34;window.open(&#38;#39;http://mailhide.recaptcha.net/d?c=avtTq3oCgz64G8GqjdvyZAGb_6dPv7dK2dUvS%2dgEHQs%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#38;#39;, &#38;#39;&#38;#39;, &#38;#39;height=300,location=0,menubar=0,resizable=0,scrollbars=0,statusbar=0,toolbar=0,width=500&#38;#39;); return false;&#34; title=&#34;Reveal this e-mail address&#34;&#62;...&#60;/a&#62;@email.uscc.net&#34; target=&#34;_blank&#34;&#62;phon&#60;a href=&#34;http://mailhide.recaptcha.net/d?c=avtTq3oCgz64G8GqjdvyZAGb_6dPv7dK2dUvS%2dgEHQs%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#34; onclick=&#34;window.open(&#38;#39;http://mailhide.recaptcha.net/d?c=avtTq3oCgz64G8GqjdvyZAGb_6dPv7dK2dUvS%2dgEHQs%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#38;#39;, &#38;#39;&#38;#39;, &#38;#39;height=300,location=0,menubar=0,resizable=0,scrollbars=0,statusbar=0,toolbar=0,width=500&#38;#39;); return false;&#34; title=&#34;Reveal this e-mail address&#34;&#62;...&#60;/a&#62;@email.uscc.net&#60;/a&#62;&#60;/span&#62;&#60;/p&#62;
&#60;div&#62;&#60;span style=&#34;font-family:&#38;#39;Courier New&#38;#39;;font-size:12pt&#34;&#62;Verizon:&#60;span&#62;���� &#60;/span&#62;&#60;span&#62;�&#60;/span&#62;&#60;span&#62;�&#60;/span&#62;&#60;a href=&#34;mailto:phon&#60;a href=&#34;http://mailhide.recaptcha.net/d?c=aDsim3VY4iDwZPdYDWUJYP1lsSuVzXLRMEYuqvxnY1Y%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#34; onclick=&#34;window.open(&#38;#39;http://mailhide.recaptcha.net/d?c=aDsim3VY4iDwZPdYDWUJYP1lsSuVzXLRMEYuqvxnY1Y%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#38;#39;, &#38;#39;&#38;#39;, &#38;#39;height=300,location=0,menubar=0,resizable=0,scrollbars=0,statusbar=0,toolbar=0,width=500&#38;#39;); return false;&#34; title=&#34;Reveal this e-mail address&#34;&#62;...&#60;/a&#62;@vzwpix.com&#34; target=&#34;_blank&#34;&#62;phon&#60;a href=&#34;http://mailhide.recaptcha.net/d?c=aDsim3VY4iDwZPdYDWUJYP1lsSuVzXLRMEYuqvxnY1Y%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#34; onclick=&#34;window.open(&#38;#39;http://mailhide.recaptcha.net/d?c=aDsim3VY4iDwZPdYDWUJYP1lsSuVzXLRMEYuqvxnY1Y%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#38;#39;, &#38;#39;&#38;#39;, &#38;#39;height=300,location=0,menubar=0,resizable=0,scrollbars=0,statusbar=0,toolbar=0,width=500&#38;#39;); return false;&#34; title=&#34;Reveal this e-mail address&#34;&#62;...&#60;/a&#62;@vzwpix.com&#60;/a&#62;&#60;br&#62;Virgin Mobile: 
&#60;a href=&#34;mailto:phon&#60;a href=&#34;http://mailhide.recaptcha.net/d?c=hV9HAFeh1zPW1sYV64HOiRx5XpKRZ%2d8IsYPIVXFfOyg%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#34; onclick=&#34;window.open(&#38;#39;http://mailhide.recaptcha.net/d?c=hV9HAFeh1zPW1sYV64HOiRx5XpKRZ%2d8IsYPIVXFfOyg%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#38;#39;, &#38;#39;&#38;#39;, &#38;#39;height=300,location=0,menubar=0,resizable=0,scrollbars=0,statusbar=0,toolbar=0,width=500&#38;#39;); return false;&#34; title=&#34;Reveal this e-mail address&#34;&#62;...&#60;/a&#62;@vmobl.com&#34; target=&#34;_blank&#34;&#62;phon&#60;a href=&#34;http://mailhide.recaptcha.net/d?c=hV9HAFeh1zPW1sYV64HOiRx5XpKRZ%2d8IsYPIVXFfOyg%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#34; onclick=&#34;window.open(&#38;#39;http://mailhide.recaptcha.net/d?c=hV9HAFeh1zPW1sYV64HOiRx5XpKRZ%2d8IsYPIVXFfOyg%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#38;#39;, &#38;#39;&#38;#39;, &#38;#39;height=300,location=0,menubar=0,resizable=0,scrollbars=0,statusbar=0,toolbar=0,width=500&#38;#39;); return false;&#34; title=&#34;Reveal this e-mail address&#34;&#62;...&#60;/a&#62;@vmobl.com&#60;/a&#62;&#60;/span&#62;&#60;/div&#62;
&#60;div&#62;&#60;span style=&#34;font-family:&#38;#39;Courier New&#38;#39;;font-size:12pt&#34;&#62;&#60;/span&#62;�&#60;/div&#62;
&#60;div&#62;&#60;span style=&#34;font-family:&#38;#39;Courier New&#38;#39;;font-size:12pt&#34;&#62;&#60;font size=&#34;2&#34; face=&#34;Arial&#34;&#62;So - how could this be implemented using DadaMail? I would 
like to add a subscriber field where people could enter their cell phone number 
if they would also like to receive text messages. There are�some 
problems:&#60;/font&#62;&#60;/span&#62;&#60;/div&#62;
&#60;div&#62;&#60;span style=&#34;font-family:&#38;#39;Courier New&#38;#39;;font-size:12pt&#34;&#62;&#60;font size=&#34;2&#34; face=&#34;Arial&#34;&#62;&#60;/font&#62;&#60;/span&#62;�&#60;/div&#62;
&#60;div&#62;&#60;span style=&#34;font-family:&#38;#39;Courier New&#38;#39;;font-size:12pt&#34;&#62;&#60;font size=&#34;2&#34; face=&#34;Arial&#34;&#62;1) The�phone carrier would would also need to be 
identified. Can a subscriber field be a combo box where a list of providers 
would be presented?&#60;/font&#62;&#60;/span&#62;&#60;/div&#62;
&#60;div&#62;&#60;span style=&#34;font-family:&#38;#39;Courier New&#38;#39;;font-size:12pt&#34;&#62;&#60;font size=&#34;2&#34; face=&#34;Arial&#34;&#62;&#60;/font&#62;&#60;/span&#62;�&#60;/div&#62;
&#60;div&#62;&#60;span style=&#34;font-family:&#38;#39;Courier New&#38;#39;;font-size:12pt&#34;&#62;&#60;font size=&#34;2&#34; face=&#34;Arial&#34;&#62;2) The carrier text message domain would need to be appended 
to the phone number to make the &#38;quot;email address.&#38;quot;&#60;/font&#62;&#60;/span&#62;&#60;/div&#62;
&#60;div&#62;&#60;span style=&#34;font-family:&#38;#39;Courier New&#38;#39;;font-size:12pt&#34;&#62;&#60;font size=&#34;2&#34; face=&#34;Arial&#34;&#62;&#60;/font&#62;&#60;/span&#62;�&#60;/div&#62;
&#60;div&#62;&#60;span style=&#34;font-family:&#38;#39;Courier New&#38;#39;;font-size:12pt&#34;&#62;&#60;font size=&#34;2&#34; face=&#34;Arial&#34;&#62;3)�Can a single�list entry have an email also sent 
to another email address from a subscriber field? I could manually add the phone 
&#38;quot;email address&#38;quot; as a second entry in the list, but that raises subscription and 
unsubscription issues.&#60;/font&#62;&#60;/span&#62;&#60;/div&#62;
&#60;div&#62;&#60;span style=&#34;font-family:&#38;#39;Courier New&#38;#39;;font-size:12pt&#34;&#62;&#60;font size=&#34;2&#34; face=&#34;Arial&#34;&#62;&#60;/font&#62;&#60;/span&#62;�&#60;/div&#62;
&#60;div&#62;&#60;span style=&#34;font-family:&#38;#39;Courier New&#38;#39;;font-size:12pt&#34;&#62;&#60;font size=&#34;2&#34; face=&#34;Arial&#34;&#62;This might be outside the responsibilities of DadaMail, but I 
thought I would start my quest by presenting the issue here. Any thoughts on 
this? Are there other ways to send emails to text messages?&#60;/font&#62;&#60;/span&#62;&#60;/div&#62;
&#60;div&#62;&#60;span style=&#34;font-family:&#38;#39;Courier New&#38;#39;;font-size:12pt&#34;&#62;&#60;font size=&#34;2&#34; face=&#34;Arial&#34;&#62;&#60;/font&#62;&#60;/span&#62;�&#60;/div&#62;
&#60;div&#62;&#60;span style=&#34;font-family:&#38;#39;Courier New&#38;#39;;font-size:12pt&#34;&#62;&#60;font size=&#34;2&#34; face=&#34;Arial&#34;&#62;Carl K.&#60;/font&#62;&#60;/span&#62;&#60;/div&#62;
&#60;div&#62;&#60;span style=&#34;font-family:&#38;#39;Courier New&#38;#39;;font-size:12pt&#34;&#62;&#60;font size=&#34;2&#34; face=&#34;Arial&#34;&#62;&#60;/font&#62;&#60;/span&#62;�&#60;/div&#62;




&#60;p&#62;Post: &#60;br&#62;
    &#60;a href=&#34;mailto:dada&#60;a href=&#34;http://mailhide.recaptcha.net/d?c=nLjwdoPw7dJ%2dDRjVpA%2dAqEe_1IjYrAqAWXWwxOe7oTk%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#34; onclick=&#34;window.open(&#38;#39;http://mailhide.recaptcha.net/d?c=nLjwdoPw7dJ%2dDRjVpA%2dAqEe_1IjYrAqAWXWwxOe7oTk%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#38;#39;, &#38;#39;&#38;#39;, &#38;#39;height=300,location=0,menubar=0,resizable=0,scrollbars=0,statusbar=0,toolbar=0,width=500&#38;#39;); return false;&#34; title=&#34;Reveal this e-mail address&#34;&#62;...&#60;/a&#62;@dadamailproject.com&#34; target=&#34;_blank&#34;&#62;
 mailto:dada&#60;a href=&#34;http://mailhide.recaptcha.net/d?c=nLjwdoPw7dJ%2dDRjVpA%2dAqEe_1IjYrAqAWXWwxOe7oTk%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#34; onclick=&#34;window.open(&#38;#39;http://mailhide.recaptcha.net/d?c=nLjwdoPw7dJ%2dDRjVpA%2dAqEe_1IjYrAqAWXWwxOe7oTk%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#38;#39;, &#38;#39;&#38;#39;, &#38;#39;height=300,location=0,menubar=0,resizable=0,scrollbars=0,statusbar=0,toolbar=0,width=500&#38;#39;); return false;&#34; title=&#34;Reveal this e-mail address&#34;&#62;...&#60;/a&#62;@dadamailproject.com
  &#60;/a&#62;
&#60;/p&#62;

&#60;p&#62;Unsubscribe:&#60;br&#62;
  &#60;a href=&#34;http://dadamailproject.com/cgi-bin/dada/mail.cgi/u/dadadev/&#34; target=&#34;_blank&#34;&#62;
     http://dadamailproject.com/cgi-bin/dada/mail.cgi/u/dadadev/
&#60;/a&#62;
&#60;/p&#62;

&#60;p&#62;List Information:&#60;br&#62; 
&#60;a href=&#34;http://dadamailproject.com/cgi-bin/dada/mail.cgi/list/dadadev&#34; target=&#34;_blank&#34;&#62;
     http://dadamailproject.com/cgi-bin/dada/mail.cgi/list/dadadev
&#60;/a&#62;
&#60;/p&#62;


&#60;p&#62;Archive:&#60;br&#62; 
         &#60;a href=&#34;http://dadamailproject.com/cgi-bin/dada/mail.cgi/archive/dadadev&#34; target=&#34;_blank&#34;&#62;
 http://dadamailproject.com/cgi-bin/dada/mail.cgi/archive/dadadev
&#60;/a&#62;


&#60;/p&#62;&#60;p&#62;Developer Info:&#60;br&#62; 
&#60;a href=&#34;http://dev.dadamailproject.com&#34; target=&#34;_blank&#34;&#62;
http://dev.dadamailproject.com
&#60;/a&#62; 
&#60;/p&#62; 



&#60;p&#62;&#60;a href=&#34;http://dadamailproject.com/cgi-bin/dada/mail.cgi/what_is_dada_mail/&#34; target=&#34;_blank&#34;&#62;Mailing List Powered by Dada Mail&#60;/a&#62;&#60;/p&#62;

&#60;p&#62;&#60;/p&#62;&#60;/div&#62;

&#60;/blockquote&#62;&#60;/div&#62;&#60;br&#62;&#60;br clear=&#34;all&#34;&#62;&#60;br&#62;&#60;/div&#62;&#60;/div&#62;-- &#60;br&#62;**********************************************&#60;br&#62;David Leonardi&#60;br&#62;Consultant&#60;br&#62;&#60;br&#62;P.I./Tax Number IT-02466620214&#60;br&#62;&#60;br&#62;GSM[DE] +49 152 2149 2153&#60;br&#62;GSM[FR]: +33 637 098948&#60;br&#62;


GSM[IT]: � +39 347 8913690&#60;br&#62;E-Mail: � � �&#60;a href=&#34;mailto:davi&#60;a href=&#34;http://mailhide.recaptcha.net/d?c=NTwgmgB5PGP8vmgQka68RUqZyL1wVJiEOstugdN18dA%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#34; onclick=&#34;window.open(&#38;#39;http://mailhide.recaptcha.net/d?c=NTwgmgB5PGP8vmgQka68RUqZyL1wVJiEOstugdN18dA%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#38;#39;, &#38;#39;&#38;#39;, &#38;#39;height=300,location=0,menubar=0,resizable=0,scrollbars=0,statusbar=0,toolbar=0,width=500&#38;#39;); return false;&#34; title=&#34;Reveal this e-mail address&#34;&#62;...&#60;/a&#62;@gmail.com&#34; target=&#34;_blank&#34;&#62;davi&#60;a href=&#34;http://mailhide.recaptcha.net/d?c=NTwgmgB5PGP8vmgQka68RUqZyL1wVJiEOstugdN18dA%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#34; onclick=&#34;window.open(&#38;#39;http://mailhide.recaptcha.net/d?c=NTwgmgB5PGP8vmgQka68RUqZyL1wVJiEOstugdN18dA%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#38;#39;, &#38;#39;&#38;#39;, &#38;#39;height=300,location=0,menubar=0,resizable=0,scrollbars=0,statusbar=0,toolbar=0,width=500&#38;#39;); return false;&#34; title=&#34;Reveal this e-mail address&#34;&#62;...&#60;/a&#62;@gmail.com&#60;/a&#62;&#60;br&#62;Skype: � � �David Leonardi (S3thxx)&#60;br&#62;**********************************************&#60;br&#62;

&#60;br&#62;&#60;br&#62;
&#60;/div&#62;&#60;div class=&#34;im&#34;&#62;





&#60;p&#62;Post: &#60;br&#62;
    &#60;a href=&#34;mailto:dada&#60;a href=&#34;http://mailhide.recaptcha.net/d?c=nLjwdoPw7dJ%2dDRjVpA%2dAqEe_1IjYrAqAWXWwxOe7oTk%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#34; onclick=&#34;window.open(&#38;#39;http://mailhide.recaptcha.net/d?c=nLjwdoPw7dJ%2dDRjVpA%2dAqEe_1IjYrAqAWXWwxOe7oTk%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#38;#39;, &#38;#39;&#38;#39;, &#38;#39;height=300,location=0,menubar=0,resizable=0,scrollbars=0,statusbar=0,toolbar=0,width=500&#38;#39;); return false;&#34; title=&#34;Reveal this e-mail address&#34;&#62;...&#60;/a&#62;@dadamailproject.com&#34; target=&#34;_blank&#34;&#62;
 mailto:dada&#60;a href=&#34;http://mailhide.recaptcha.net/d?c=nLjwdoPw7dJ%2dDRjVpA%2dAqEe_1IjYrAqAWXWwxOe7oTk%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#34; onclick=&#34;window.open(&#38;#39;http://mailhide.recaptcha.net/d?c=nLjwdoPw7dJ%2dDRjVpA%2dAqEe_1IjYrAqAWXWwxOe7oTk%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#38;#39;, &#38;#39;&#38;#39;, &#38;#39;height=300,location=0,menubar=0,resizable=0,scrollbars=0,statusbar=0,toolbar=0,width=500&#38;#39;); return false;&#34; title=&#34;Reveal this e-mail address&#34;&#62;...&#60;/a&#62;@dadamailproject.com
  &#60;/a&#62;
&#60;/p&#62;

&#60;p&#62;Unsubscribe:&#60;br&#62;
  &#60;a href=&#34;http://dadamailproject.com/cgi-bin/dada/mail.cgi/u/dadadev/&#34; target=&#34;_blank&#34;&#62;
     http://dadamailproject.com/cgi-bin/dada/mail.cgi/u/dadadev/
&#60;/a&#62;
&#60;/p&#62;

&#60;p&#62;List Information:&#60;br&#62; 
&#60;a href=&#34;http://dadamailproject.com/cgi-bin/dada/mail.cgi/list/dadadev&#34; target=&#34;_blank&#34;&#62;
     http://dadamailproject.com/cgi-bin/dada/mail.cgi/list/dadadev
&#60;/a&#62;
&#60;/p&#62;


&#60;p&#62;Archive:&#60;br&#62; 
         &#60;a href=&#34;http://dadamailproject.com/cgi-bin/dada/mail.cgi/archive/dadadev&#34; target=&#34;_blank&#34;&#62;
 http://dadamailproject.com/cgi-bin/dada/mail.cgi/archive/dadadev
&#60;/a&#62;


&#60;/p&#62;&#60;p&#62;Developer Info:&#60;br&#62; 
&#60;a href=&#34;http://dev.dadamailproject.com&#34; target=&#34;_blank&#34;&#62;
http://dev.dadamailproject.com
&#60;/a&#62; 
&#60;/p&#62; 



&#60;p&#62;&#60;a href=&#34;http://dadamailproject.com/cgi-bin/dada/mail.cgi/what_is_dada_mail/&#34; target=&#34;_blank&#34;&#62;Mailing List Powered by Dada Mail&#60;/a&#62;&#60;/p&#62;


&#60;p&#62;&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;
 
 
			&#60;/blockquote&#62;&#60;/div&#62;&#60;br&#62;&#60;/div&#62;&#60;/div&#62;







&lt;!-- begin subscription_form_widget.tmpl --&gt; 



 

    &lt;form action=&quot;http://dadamailproject.com/cgi-bin/dada/mail.cgi&quot; method=&quot;post&quot;&gt;

 

&lt;fieldset&gt;
&lt;legend&gt;
 Subscribe/Unsubscribe  on Dada Mail Developers
&lt;/legend&gt;

 
    

    &lt;input type=&quot;hidden&quot; name=&quot;list&quot; value=&quot;dadadev&quot; /&gt;


&lt;p&gt;
&lt;label for=&quot;email&quot; style=&quot;width: 7em;float: left;text-align: right;margin-right: 0.5em;display: block&quot; &gt;
Email&amp;nbsp;Address: 
&lt;/label&gt;
 
	&lt;input type=&quot;text&quot; name=&quot;email&quot; id=&quot;email&quot; value=&quot;&quot; /&gt; &lt;span class=&quot;error&quot;&gt;* Required&lt;/span&gt;
 

&lt;/p&gt;

 

	 

 


&lt;hr style=&quot;border-top: 1px solid black;&quot; /&gt; 

 
    &lt;p&gt;
    &lt;label for=&quot;f_s&quot; style=&quot;width: 7em;float: left;text-align: right;margin-right: 0.5em;display: block&quot;&gt;
    Subscribe
    &lt;/label&gt;
    &lt;input type=&quot;radio&quot; name=&quot;f&quot; id=&quot;f_s&quot; value=&quot;subscribe&quot; checked=&quot;checked&quot; /&gt;
    &lt;/p&gt; 
    
    &lt;p&gt; 
    &lt;label for=&quot;f_u&quot; style=&quot;width: 7em;float: left;text-align: right;margin-right: 0.5em;display: block&quot;&gt;Unsubscribe&lt;/label&gt; 
    &lt;input type=&quot;radio&quot; name=&quot;f&quot;  id=&quot;f_u&quot;  value=&quot;unsubscribe&quot;  /&gt;
    &lt;/p&gt;   

 

&lt;hr style=&quot;border-top: 1px solid black;&quot; /&gt; 

&lt;p style=&quot;text-align:right;display:block&quot;&gt;
&lt;input type=&quot;submit&quot; value=&quot;Submit Your Information&quot; class=&quot;processing&quot; /&gt;
&lt;/p&gt; 


 




&lt;/fieldset&gt;
&lt;/form&gt; 



  
&lt;!-- end subscription_form_widget.tmpl --&gt; 
</description>
		 <pubDate>Tue, 23 Feb 2010 00:06:00 GMT</pubDate>
		 <guid>http://dadamailproject.com/cgi-bin/dada/mail.cgi/archive/dadadev/20100222190603/</guid>
		</item>

	
	 
		<item>
		 <title>[dadadev] Re: Email to Cell Phone Text Message</title>
		 <link>http://dadamailproject.com/cgi-bin/dada/mail.cgi/archive/dadadev/20100222040452/</link>
		 <description>
&#60;!--open_img--&#62;&#60;img src=&#34;http://dadamailproject.com/cgi-bin/dada/mail.cgi/spacer_image/dadadev//spacer.png&#34; /&#62;&#60;!--/open_img--&#62;
 
AFAIK to be able to send emails through that gateway, you MUST be sending the email as the user which signed up for the account on the respective website of each telco.&#60;div&#62;&#60;br&#62;&#60;/div&#62;&#60;div&#62;At least, thats how vodafone handles it in europe.&#60;/div&#62;
&#60;div&#62;just a heads up. your mileage may vary.&#60;br&#62;&#60;br&#62;&#60;div class=&#34;gmail_quote&#34;&#62;On Sun, Feb 21, 2010 at 4:34 AM, Carl G. Kuczun &#60;span dir=&#34;ltr&#34;&#62;&#38;lt;&#60;a href=&#34;mailto:ckuc&#60;a href=&#34;http://mailhide.recaptcha.net/d?c=roMaeroll09iccfSejeNd%2dLmk9VehW3ZSsfqTHLYxUo%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#34; onclick=&#34;window.open(&#38;#39;http://mailhide.recaptcha.net/d?c=roMaeroll09iccfSejeNd%2dLmk9VehW3ZSsfqTHLYxUo%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#38;#39;, &#38;#39;&#38;#39;, &#38;#39;height=300,location=0,menubar=0,resizable=0,scrollbars=0,statusbar=0,toolbar=0,width=500&#38;#39;); return false;&#34; title=&#34;Reveal this e-mail address&#34;&#62;...&#60;/a&#62;@comcast.net&#34;&#62;ckuc&#60;a href=&#34;http://mailhide.recaptcha.net/d?c=roMaeroll09iccfSejeNd%2dLmk9VehW3ZSsfqTHLYxUo%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#34; onclick=&#34;window.open(&#38;#39;http://mailhide.recaptcha.net/d?c=roMaeroll09iccfSejeNd%2dLmk9VehW3ZSsfqTHLYxUo%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#38;#39;, &#38;#39;&#38;#39;, &#38;#39;height=300,location=0,menubar=0,resizable=0,scrollbars=0,statusbar=0,toolbar=0,width=500&#38;#39;); return false;&#34; title=&#34;Reveal this e-mail address&#34;&#62;...&#60;/a&#62;@comcast.net&#60;/a&#62;&#38;gt;&#60;/span&#62; wrote:&#60;br&#62;
&#60;blockquote class=&#34;gmail_quote&#34; style=&#34;margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;&#34;&#62;






&#60;div bgcolor=&#34;#ffffff&#34;&#62;
&#60;img&#62;

&#60;div&#62;&#60;font size=&#34;2&#34; face=&#34;Arial&#34;&#62;I was asked today to see if I could have emails 
also sent to cell phones as text messages. A perfectly reasonable request since 
we all live by our cell phones. I know that I can send an email to my cell phone 
by appending the cell phone carrier&#38;#39;s text messaging email domain to my phone 
number. For example, if I send an email to the address &#60;/font&#62;&#60;a href=&#34;mailto:1800&#60;a href=&#34;http://mailhide.recaptcha.net/d?c=ZDNaX0vyYRQqVmTV1uHtR0roWmxOm9MU7OAc_8KjfNg%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#34; onclick=&#34;window.open(&#38;#39;http://mailhide.recaptcha.net/d?c=ZDNaX0vyYRQqVmTV1uHtR0roWmxOm9MU7OAc_8KjfNg%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#38;#39;, &#38;#39;&#38;#39;, &#38;#39;height=300,location=0,menubar=0,resizable=0,scrollbars=0,statusbar=0,toolbar=0,width=500&#38;#39;); return false;&#34; title=&#34;Reveal this e-mail address&#34;&#62;...&#60;/a&#62;@vswpix.com&#34; target=&#34;_blank&#34;&#62;&#60;font size=&#34;2&#34; face=&#34;Arial&#34;&#62;1800&#60;a href=&#34;http://mailhide.recaptcha.net/d?c=ZDNaX0vyYRQqVmTV1uHtR0roWmxOm9MU7OAc_8KjfNg%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#34; onclick=&#34;window.open(&#38;#39;http://mailhide.recaptcha.net/d?c=ZDNaX0vyYRQqVmTV1uHtR0roWmxOm9MU7OAc_8KjfNg%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#38;#39;, &#38;#39;&#38;#39;, &#38;#39;height=300,location=0,menubar=0,resizable=0,scrollbars=0,statusbar=0,toolbar=0,width=500&#38;#39;); return false;&#34; title=&#34;Reveal this e-mail address&#34;&#62;...&#60;/a&#62;@vswpix.com&#60;/font&#62;&#60;/a&#62;&#60;font size=&#34;2&#34; face=&#34;Arial&#34;&#62; it will be 
delivered by Verizon as a text message to the phone. Every carrier has their own 
text message domain. Here is�a partial list:&#60;/font&#62;&#60;/div&#62;
&#60;div&#62;&#60;font size=&#34;2&#34; face=&#34;Arial&#34;&#62;&#60;/font&#62;�&#60;/div&#62;
&#60;p style=&#34;margin:0in 0in 0pt&#34; class=&#34;MsoNormal&#34;&#62;&#60;span style=&#34;font-family:&#38;#39;Courier New&#38;#39;&#34;&#62;Alltel:&#60;span&#62;������� 
&#60;/span&#62;&#60;a href=&#34;mailto:phon&#60;a href=&#34;http://mailhide.recaptcha.net/d?c=5z7nD0xXJzR7aiq%2d4PSlDFMPFIl%2dpL9OfPFoX9Jx3OM%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#34; onclick=&#34;window.open(&#38;#39;http://mailhide.recaptcha.net/d?c=5z7nD0xXJzR7aiq%2d4PSlDFMPFIl%2dpL9OfPFoX9Jx3OM%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#38;#39;, &#38;#39;&#38;#39;, &#38;#39;height=300,location=0,menubar=0,resizable=0,scrollbars=0,statusbar=0,toolbar=0,width=500&#38;#39;); return false;&#34; title=&#34;Reveal this e-mail address&#34;&#62;...&#60;/a&#62;@message.alltel.com&#34; target=&#34;_blank&#34;&#62;phon&#60;a href=&#34;http://mailhide.recaptcha.net/d?c=5z7nD0xXJzR7aiq%2d4PSlDFMPFIl%2dpL9OfPFoX9Jx3OM%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#34; onclick=&#34;window.open(&#38;#39;http://mailhide.recaptcha.net/d?c=5z7nD0xXJzR7aiq%2d4PSlDFMPFIl%2dpL9OfPFoX9Jx3OM%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#38;#39;, &#38;#39;&#38;#39;, &#38;#39;height=300,location=0,menubar=0,resizable=0,scrollbars=0,statusbar=0,toolbar=0,width=500&#38;#39;); return false;&#34; title=&#34;Reveal this e-mail address&#34;&#62;...&#60;/a&#62;@message.alltel.com&#60;/a&#62;&#60;br&#62;AT&#38;amp;T:&#60;span&#62;��������� 
&#60;/span&#62;&#60;a href=&#34;mailto:phon&#60;a href=&#34;http://mailhide.recaptcha.net/d?c=H8lKKL9S4tfpABMwd8Y%2dv1QJvx4NaZ1Qd7TuNLdCaVM%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#34; onclick=&#34;window.open(&#38;#39;http://mailhide.recaptcha.net/d?c=H8lKKL9S4tfpABMwd8Y%2dv1QJvx4NaZ1Qd7TuNLdCaVM%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#38;#39;, &#38;#39;&#38;#39;, &#38;#39;height=300,location=0,menubar=0,resizable=0,scrollbars=0,statusbar=0,toolbar=0,width=500&#38;#39;); return false;&#34; title=&#34;Reveal this e-mail address&#34;&#62;...&#60;/a&#62;@txt.att.net&#34; target=&#34;_blank&#34;&#62;phon&#60;a href=&#34;http://mailhide.recaptcha.net/d?c=H8lKKL9S4tfpABMwd8Y%2dv1QJvx4NaZ1Qd7TuNLdCaVM%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#34; onclick=&#34;window.open(&#38;#39;http://mailhide.recaptcha.net/d?c=H8lKKL9S4tfpABMwd8Y%2dv1QJvx4NaZ1Qd7TuNLdCaVM%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#38;#39;, &#38;#39;&#38;#39;, &#38;#39;height=300,location=0,menubar=0,resizable=0,scrollbars=0,statusbar=0,toolbar=0,width=500&#38;#39;); return false;&#34; title=&#34;Reveal this e-mail address&#34;&#62;...&#60;/a&#62;@txt.att.net&#60;/a&#62;&#60;/span&#62;&#60;/p&#62;
&#60;p style=&#34;margin:0in 0in 0pt&#34; class=&#34;MsoNormal&#34;&#62;&#60;span style=&#34;font-family:&#38;#39;Courier New&#38;#39;&#34;&#62;Cingular:&#60;span&#62;����� 
&#60;/span&#62;&#60;a href=&#34;mailto:phon&#60;a href=&#34;http://mailhide.recaptcha.net/d?c=bWd%2dHBHP0dl6zXiXn8uCFSW61JwvXJblhOqe9p0nfZI%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#34; onclick=&#34;window.open(&#38;#39;http://mailhide.recaptcha.net/d?c=bWd%2dHBHP0dl6zXiXn8uCFSW61JwvXJblhOqe9p0nfZI%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#38;#39;, &#38;#39;&#38;#39;, &#38;#39;height=300,location=0,menubar=0,resizable=0,scrollbars=0,statusbar=0,toolbar=0,width=500&#38;#39;); return false;&#34; title=&#34;Reveal this e-mail address&#34;&#62;...&#60;/a&#62;@cingularme.com&#34; target=&#34;_blank&#34;&#62;phon&#60;a href=&#34;http://mailhide.recaptcha.net/d?c=bWd%2dHBHP0dl6zXiXn8uCFSW61JwvXJblhOqe9p0nfZI%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#34; onclick=&#34;window.open(&#38;#39;http://mailhide.recaptcha.net/d?c=bWd%2dHBHP0dl6zXiXn8uCFSW61JwvXJblhOqe9p0nfZI%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#38;#39;, &#38;#39;&#38;#39;, &#38;#39;height=300,location=0,menubar=0,resizable=0,scrollbars=0,statusbar=0,toolbar=0,width=500&#38;#39;); return false;&#34; title=&#34;Reveal this e-mail address&#34;&#62;...&#60;/a&#62;@cingularme.com&#60;/a&#62; &#60;br&#62;Nextel:&#60;span&#62;������� 
&#60;/span&#62;&#60;a href=&#34;mailto:phon&#60;a href=&#34;http://mailhide.recaptcha.net/d?c=5z7nD0xXJzR7aiq%2d4PSlDP6ijGRFlYAEvHXs_7dZ7Ug%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#34; onclick=&#34;window.open(&#38;#39;http://mailhide.recaptcha.net/d?c=5z7nD0xXJzR7aiq%2d4PSlDP6ijGRFlYAEvHXs_7dZ7Ug%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#38;#39;, &#38;#39;&#38;#39;, &#38;#39;height=300,location=0,menubar=0,resizable=0,scrollbars=0,statusbar=0,toolbar=0,width=500&#38;#39;); return false;&#34; title=&#34;Reveal this e-mail address&#34;&#62;...&#60;/a&#62;@messaging.nextel.com&#34; target=&#34;_blank&#34;&#62;phon&#60;a href=&#34;http://mailhide.recaptcha.net/d?c=5z7nD0xXJzR7aiq%2d4PSlDP6ijGRFlYAEvHXs_7dZ7Ug%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#34; onclick=&#34;window.open(&#38;#39;http://mailhide.recaptcha.net/d?c=5z7nD0xXJzR7aiq%2d4PSlDP6ijGRFlYAEvHXs_7dZ7Ug%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#38;#39;, &#38;#39;&#38;#39;, &#38;#39;height=300,location=0,menubar=0,resizable=0,scrollbars=0,statusbar=0,toolbar=0,width=500&#38;#39;); return false;&#34; title=&#34;Reveal this e-mail address&#34;&#62;...&#60;/a&#62;@messaging.nextel.com&#60;/a&#62; &#60;br&#62;Qwest:&#60;span&#62;��� &#60;/span&#62;&#60;span&#62;����&#60;/span&#62;&#60;span&#62;�&#60;/span&#62;&#60;a href=&#34;mailto:phon&#60;a href=&#34;http://mailhide.recaptcha.net/d?c=FgankWXFf5T9w88JqA5PpnPMwQYX9%2dopuvO_y2NmcfM%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#34; onclick=&#34;window.open(&#38;#39;http://mailhide.recaptcha.net/d?c=FgankWXFf5T9w88JqA5PpnPMwQYX9%2dopuvO_y2NmcfM%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#38;#39;, &#38;#39;&#38;#39;, &#38;#39;height=300,location=0,menubar=0,resizable=0,scrollbars=0,statusbar=0,toolbar=0,width=500&#38;#39;); return false;&#34; title=&#34;Reveal this e-mail address&#34;&#62;...&#60;/a&#62;@qwestmp.com&#34; target=&#34;_blank&#34;&#62;phon&#60;a href=&#34;http://mailhide.recaptcha.net/d?c=FgankWXFf5T9w88JqA5PpnPMwQYX9%2dopuvO_y2NmcfM%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#34; onclick=&#34;window.open(&#38;#39;http://mailhide.recaptcha.net/d?c=FgankWXFf5T9w88JqA5PpnPMwQYX9%2dopuvO_y2NmcfM%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#38;#39;, &#38;#39;&#38;#39;, &#38;#39;height=300,location=0,menubar=0,resizable=0,scrollbars=0,statusbar=0,toolbar=0,width=500&#38;#39;); return false;&#34; title=&#34;Reveal this e-mail address&#34;&#62;...&#60;/a&#62;@qwestmp.com&#60;/a&#62;&#60;/span&#62;&#60;/p&#62;

&#60;p style=&#34;margin:0in 0in 0pt&#34; class=&#34;MsoNormal&#34;&#62;&#60;span style=&#34;font-family:&#38;#39;Courier New&#38;#39;&#34;&#62;Sprint:&#60;span&#62;������� 
&#60;/span&#62;&#60;a href=&#34;mailto:phon&#60;a href=&#34;http://mailhide.recaptcha.net/d?c=5z7nD0xXJzR7aiq%2d4PSlDEe99uB6pRiReP7m4T_DphEOe2TfV5AHR3_gk4vSYIkg&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#34; onclick=&#34;window.open(&#38;#39;http://mailhide.recaptcha.net/d?c=5z7nD0xXJzR7aiq%2d4PSlDEe99uB6pRiReP7m4T_DphEOe2TfV5AHR3_gk4vSYIkg&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#38;#39;, &#38;#39;&#38;#39;, &#38;#39;height=300,location=0,menubar=0,resizable=0,scrollbars=0,statusbar=0,toolbar=0,width=500&#38;#39;); return false;&#34; title=&#34;Reveal this e-mail address&#34;&#62;...&#60;/a&#62;@messaging.sprintpcs.com&#34; target=&#34;_blank&#34;&#62;phon&#60;a href=&#34;http://mailhide.recaptcha.net/d?c=5z7nD0xXJzR7aiq%2d4PSlDEe99uB6pRiReP7m4T_DphEOe2TfV5AHR3_gk4vSYIkg&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#34; onclick=&#34;window.open(&#38;#39;http://mailhide.recaptcha.net/d?c=5z7nD0xXJzR7aiq%2d4PSlDEe99uB6pRiReP7m4T_DphEOe2TfV5AHR3_gk4vSYIkg&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#38;#39;, &#38;#39;&#38;#39;, &#38;#39;height=300,location=0,menubar=0,resizable=0,scrollbars=0,statusbar=0,toolbar=0,width=500&#38;#39;); return false;&#34; title=&#34;Reveal this e-mail address&#34;&#62;...&#60;/a&#62;@messaging.sprintpcs.com&#60;/a&#62;&#60;br&#62;T-Mobile:&#60;span&#62;����� 
&#60;/span&#62;&#60;a href=&#34;mailto:phon&#60;a href=&#34;http://mailhide.recaptcha.net/d?c=Nd%2dzfnRSFu6KftpstVQn_GPGlleH5ClH3KEEddC8EBk%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#34; onclick=&#34;window.open(&#38;#39;http://mailhide.recaptcha.net/d?c=Nd%2dzfnRSFu6KftpstVQn_GPGlleH5ClH3KEEddC8EBk%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#38;#39;, &#38;#39;&#38;#39;, &#38;#39;height=300,location=0,menubar=0,resizable=0,scrollbars=0,statusbar=0,toolbar=0,width=500&#38;#39;); return false;&#34; title=&#34;Reveal this e-mail address&#34;&#62;...&#60;/a&#62;@tmomail.net&#34; target=&#34;_blank&#34;&#62;phon&#60;a href=&#34;http://mailhide.recaptcha.net/d?c=Nd%2dzfnRSFu6KftpstVQn_GPGlleH5ClH3KEEddC8EBk%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#34; onclick=&#34;window.open(&#38;#39;http://mailhide.recaptcha.net/d?c=Nd%2dzfnRSFu6KftpstVQn_GPGlleH5ClH3KEEddC8EBk%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#38;#39;, &#38;#39;&#38;#39;, &#38;#39;height=300,location=0,menubar=0,resizable=0,scrollbars=0,statusbar=0,toolbar=0,width=500&#38;#39;); return false;&#34; title=&#34;Reveal this e-mail address&#34;&#62;...&#60;/a&#62;@tmomail.net&#60;/a&#62; &#60;br&#62;US Cellular:&#60;span&#62;�� 
&#60;/span&#62;&#60;a href=&#34;mailto:phon&#60;a href=&#34;http://mailhide.recaptcha.net/d?c=avtTq3oCgz64G8GqjdvyZAGb_6dPv7dK2dUvS%2dgEHQs%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#34; onclick=&#34;window.open(&#38;#39;http://mailhide.recaptcha.net/d?c=avtTq3oCgz64G8GqjdvyZAGb_6dPv7dK2dUvS%2dgEHQs%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#38;#39;, &#38;#39;&#38;#39;, &#38;#39;height=300,location=0,menubar=0,resizable=0,scrollbars=0,statusbar=0,toolbar=0,width=500&#38;#39;); return false;&#34; title=&#34;Reveal this e-mail address&#34;&#62;...&#60;/a&#62;@email.uscc.net&#34; target=&#34;_blank&#34;&#62;phon&#60;a href=&#34;http://mailhide.recaptcha.net/d?c=avtTq3oCgz64G8GqjdvyZAGb_6dPv7dK2dUvS%2dgEHQs%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#34; onclick=&#34;window.open(&#38;#39;http://mailhide.recaptcha.net/d?c=avtTq3oCgz64G8GqjdvyZAGb_6dPv7dK2dUvS%2dgEHQs%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#38;#39;, &#38;#39;&#38;#39;, &#38;#39;height=300,location=0,menubar=0,resizable=0,scrollbars=0,statusbar=0,toolbar=0,width=500&#38;#39;); return false;&#34; title=&#34;Reveal this e-mail address&#34;&#62;...&#60;/a&#62;@email.uscc.net&#60;/a&#62;&#60;/span&#62;&#60;/p&#62;
&#60;div&#62;&#60;span style=&#34;font-family:&#38;#39;Courier New&#38;#39;;font-size:12pt&#34;&#62;Verizon:&#60;span&#62;���� &#60;/span&#62;&#60;span&#62;�&#60;/span&#62;&#60;span&#62;�&#60;/span&#62;&#60;a href=&#34;mailto:phon&#60;a href=&#34;http://mailhide.recaptcha.net/d?c=aDsim3VY4iDwZPdYDWUJYP1lsSuVzXLRMEYuqvxnY1Y%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#34; onclick=&#34;window.open(&#38;#39;http://mailhide.recaptcha.net/d?c=aDsim3VY4iDwZPdYDWUJYP1lsSuVzXLRMEYuqvxnY1Y%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#38;#39;, &#38;#39;&#38;#39;, &#38;#39;height=300,location=0,menubar=0,resizable=0,scrollbars=0,statusbar=0,toolbar=0,width=500&#38;#39;); return false;&#34; title=&#34;Reveal this e-mail address&#34;&#62;...&#60;/a&#62;@vzwpix.com&#34; target=&#34;_blank&#34;&#62;phon&#60;a href=&#34;http://mailhide.recaptcha.net/d?c=aDsim3VY4iDwZPdYDWUJYP1lsSuVzXLRMEYuqvxnY1Y%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#34; onclick=&#34;window.open(&#38;#39;http://mailhide.recaptcha.net/d?c=aDsim3VY4iDwZPdYDWUJYP1lsSuVzXLRMEYuqvxnY1Y%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#38;#39;, &#38;#39;&#38;#39;, &#38;#39;height=300,location=0,menubar=0,resizable=0,scrollbars=0,statusbar=0,toolbar=0,width=500&#38;#39;); return false;&#34; title=&#34;Reveal this e-mail address&#34;&#62;...&#60;/a&#62;@vzwpix.com&#60;/a&#62;&#60;br&#62;Virgin Mobile: 
&#60;a href=&#34;mailto:phon&#60;a href=&#34;http://mailhide.recaptcha.net/d?c=hV9HAFeh1zPW1sYV64HOiRx5XpKRZ%2d8IsYPIVXFfOyg%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#34; onclick=&#34;window.open(&#38;#39;http://mailhide.recaptcha.net/d?c=hV9HAFeh1zPW1sYV64HOiRx5XpKRZ%2d8IsYPIVXFfOyg%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#38;#39;, &#38;#39;&#38;#39;, &#38;#39;height=300,location=0,menubar=0,resizable=0,scrollbars=0,statusbar=0,toolbar=0,width=500&#38;#39;); return false;&#34; title=&#34;Reveal this e-mail address&#34;&#62;...&#60;/a&#62;@vmobl.com&#34; target=&#34;_blank&#34;&#62;phon&#60;a href=&#34;http://mailhide.recaptcha.net/d?c=hV9HAFeh1zPW1sYV64HOiRx5XpKRZ%2d8IsYPIVXFfOyg%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#34; onclick=&#34;window.open(&#38;#39;http://mailhide.recaptcha.net/d?c=hV9HAFeh1zPW1sYV64HOiRx5XpKRZ%2d8IsYPIVXFfOyg%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#38;#39;, &#38;#39;&#38;#39;, &#38;#39;height=300,location=0,menubar=0,resizable=0,scrollbars=0,statusbar=0,toolbar=0,width=500&#38;#39;); return false;&#34; title=&#34;Reveal this e-mail address&#34;&#62;...&#60;/a&#62;@vmobl.com&#60;/a&#62;&#60;/span&#62;&#60;/div&#62;
&#60;div&#62;&#60;span style=&#34;font-family:&#38;#39;Courier New&#38;#39;;font-size:12pt&#34;&#62;&#60;/span&#62;�&#60;/div&#62;
&#60;div&#62;&#60;span style=&#34;font-family:&#38;#39;Courier New&#38;#39;;font-size:12pt&#34;&#62;&#60;font size=&#34;2&#34; face=&#34;Arial&#34;&#62;So - how could this be implemented using DadaMail? I would 
like to add a subscriber field where people could enter their cell phone number 
if they would also like to receive text messages. There are�some 
problems:&#60;/font&#62;&#60;/span&#62;&#60;/div&#62;
&#60;div&#62;&#60;span style=&#34;font-family:&#38;#39;Courier New&#38;#39;;font-size:12pt&#34;&#62;&#60;font size=&#34;2&#34; face=&#34;Arial&#34;&#62;&#60;/font&#62;&#60;/span&#62;�&#60;/div&#62;
&#60;div&#62;&#60;span style=&#34;font-family:&#38;#39;Courier New&#38;#39;;font-size:12pt&#34;&#62;&#60;font size=&#34;2&#34; face=&#34;Arial&#34;&#62;1) The�phone carrier would would also need to be 
identified. Can a subscriber field be a combo box where a list of providers 
would be presented?&#60;/font&#62;&#60;/span&#62;&#60;/div&#62;
&#60;div&#62;&#60;span style=&#34;font-family:&#38;#39;Courier New&#38;#39;;font-size:12pt&#34;&#62;&#60;font size=&#34;2&#34; face=&#34;Arial&#34;&#62;&#60;/font&#62;&#60;/span&#62;�&#60;/div&#62;
&#60;div&#62;&#60;span style=&#34;font-family:&#38;#39;Courier New&#38;#39;;font-size:12pt&#34;&#62;&#60;font size=&#34;2&#34; face=&#34;Arial&#34;&#62;2) The carrier text message domain would need to be appended 
to the phone number to make the &#38;quot;email address.&#38;quot;&#60;/font&#62;&#60;/span&#62;&#60;/div&#62;
&#60;div&#62;&#60;span style=&#34;font-family:&#38;#39;Courier New&#38;#39;;font-size:12pt&#34;&#62;&#60;font size=&#34;2&#34; face=&#34;Arial&#34;&#62;&#60;/font&#62;&#60;/span&#62;�&#60;/div&#62;
&#60;div&#62;&#60;span style=&#34;font-family:&#38;#39;Courier New&#38;#39;;font-size:12pt&#34;&#62;&#60;font size=&#34;2&#34; face=&#34;Arial&#34;&#62;3)�Can a single�list entry have an email also sent 
to another email address from a subscriber field? I could manually add the phone 
&#38;quot;email address&#38;quot; as a second entry in the list, but that raises subscription and 
unsubscription issues.&#60;/font&#62;&#60;/span&#62;&#60;/div&#62;
&#60;div&#62;&#60;span style=&#34;font-family:&#38;#39;Courier New&#38;#39;;font-size:12pt&#34;&#62;&#60;font size=&#34;2&#34; face=&#34;Arial&#34;&#62;&#60;/font&#62;&#60;/span&#62;�&#60;/div&#62;
&#60;div&#62;&#60;span style=&#34;font-family:&#38;#39;Courier New&#38;#39;;font-size:12pt&#34;&#62;&#60;font size=&#34;2&#34; face=&#34;Arial&#34;&#62;This might be outside the responsibilities of DadaMail, but I 
thought I would start my quest by presenting the issue here. Any thoughts on 
this? Are there other ways to send emails to text messages?&#60;/font&#62;&#60;/span&#62;&#60;/div&#62;
&#60;div&#62;&#60;span style=&#34;font-family:&#38;#39;Courier New&#38;#39;;font-size:12pt&#34;&#62;&#60;font size=&#34;2&#34; face=&#34;Arial&#34;&#62;&#60;/font&#62;&#60;/span&#62;�&#60;/div&#62;
&#60;div&#62;&#60;span style=&#34;font-family:&#38;#39;Courier New&#38;#39;;font-size:12pt&#34;&#62;&#60;font size=&#34;2&#34; face=&#34;Arial&#34;&#62;Carl K.&#60;/font&#62;&#60;/span&#62;&#60;/div&#62;
&#60;div&#62;&#60;span style=&#34;font-family:&#38;#39;Courier New&#38;#39;;font-size:12pt&#34;&#62;&#60;font size=&#34;2&#34; face=&#34;Arial&#34;&#62;&#60;/font&#62;&#60;/span&#62;�&#60;/div&#62;




&#60;p&#62;Post: &#60;br&#62;
    &#60;a href=&#34;mailto:dada&#60;a href=&#34;http://mailhide.recaptcha.net/d?c=nLjwdoPw7dJ%2dDRjVpA%2dAqEe_1IjYrAqAWXWwxOe7oTk%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#34; onclick=&#34;window.open(&#38;#39;http://mailhide.recaptcha.net/d?c=nLjwdoPw7dJ%2dDRjVpA%2dAqEe_1IjYrAqAWXWwxOe7oTk%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#38;#39;, &#38;#39;&#38;#39;, &#38;#39;height=300,location=0,menubar=0,resizable=0,scrollbars=0,statusbar=0,toolbar=0,width=500&#38;#39;); return false;&#34; title=&#34;Reveal this e-mail address&#34;&#62;...&#60;/a&#62;@dadamailproject.com&#34; target=&#34;_blank&#34;&#62;
 mailto:dada&#60;a href=&#34;http://mailhide.recaptcha.net/d?c=nLjwdoPw7dJ%2dDRjVpA%2dAqEe_1IjYrAqAWXWwxOe7oTk%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#34; onclick=&#34;window.open(&#38;#39;http://mailhide.recaptcha.net/d?c=nLjwdoPw7dJ%2dDRjVpA%2dAqEe_1IjYrAqAWXWwxOe7oTk%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#38;#39;, &#38;#39;&#38;#39;, &#38;#39;height=300,location=0,menubar=0,resizable=0,scrollbars=0,statusbar=0,toolbar=0,width=500&#38;#39;); return false;&#34; title=&#34;Reveal this e-mail address&#34;&#62;...&#60;/a&#62;@dadamailproject.com
  &#60;/a&#62;
&#60;/p&#62;

&#60;p&#62;Unsubscribe:&#60;br&#62;
  &#60;a href=&#34;http://dadamailproject.com/cgi-bin/dada/mail.cgi/u/dadadev/&#34; target=&#34;_blank&#34;&#62;
     http://dadamailproject.com/cgi-bin/dada/mail.cgi/u/dadadev/
&#60;/a&#62;
&#60;/p&#62;

&#60;p&#62;List Information:&#60;br&#62; 
&#60;a href=&#34;http://dadamailproject.com/cgi-bin/dada/mail.cgi/list/dadadev&#34; target=&#34;_blank&#34;&#62;
     http://dadamailproject.com/cgi-bin/dada/mail.cgi/list/dadadev
&#60;/a&#62;
&#60;/p&#62;


&#60;p&#62;Archive:&#60;br&#62; 
         &#60;a href=&#34;http://dadamailproject.com/cgi-bin/dada/mail.cgi/archive/dadadev&#34; target=&#34;_blank&#34;&#62;
 http://dadamailproject.com/cgi-bin/dada/mail.cgi/archive/dadadev
&#60;/a&#62;


&#60;/p&#62;&#60;p&#62;Developer Info:&#60;br&#62; 
&#60;a href=&#34;http://dev.dadamailproject.com&#34; target=&#34;_blank&#34;&#62;
http://dev.dadamailproject.com
&#60;/a&#62; 
&#60;/p&#62; 



&#60;p&#62;&#60;a href=&#34;http://dadamailproject.com/cgi-bin/dada/mail.cgi/what_is_dada_mail/&#34; target=&#34;_blank&#34;&#62;Mailing List Powered by Dada Mail&#60;/a&#62;&#60;/p&#62;

&#60;p&#62;&#60;/p&#62;&#60;/div&#62;

&#60;/blockquote&#62;&#60;/div&#62;&#60;br&#62;&#60;br clear=&#34;all&#34;&#62;&#60;br&#62;-- &#60;br&#62;**********************************************&#60;br&#62;David Leonardi&#60;br&#62;Consultant&#60;br&#62;&#60;br&#62;P.I./Tax Number IT-02466620214&#60;br&#62;&#60;br&#62;GSM[DE] +49 152 2149 2153&#60;br&#62;GSM[FR]: +33 637 098948&#60;br&#62;
GSM[IT]: � +39 347 8913690&#60;br&#62;E-Mail: � � �&#60;a href=&#34;mailto:davi&#60;a href=&#34;http://mailhide.recaptcha.net/d?c=NTwgmgB5PGP8vmgQka68RUqZyL1wVJiEOstugdN18dA%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#34; onclick=&#34;window.open(&#38;#39;http://mailhide.recaptcha.net/d?c=NTwgmgB5PGP8vmgQka68RUqZyL1wVJiEOstugdN18dA%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#38;#39;, &#38;#39;&#38;#39;, &#38;#39;height=300,location=0,menubar=0,resizable=0,scrollbars=0,statusbar=0,toolbar=0,width=500&#38;#39;); return false;&#34; title=&#34;Reveal this e-mail address&#34;&#62;...&#60;/a&#62;@gmail.com&#34;&#62;davi&#60;a href=&#34;http://mailhide.recaptcha.net/d?c=NTwgmgB5PGP8vmgQka68RUqZyL1wVJiEOstugdN18dA%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#34; onclick=&#34;window.open(&#38;#39;http://mailhide.recaptcha.net/d?c=NTwgmgB5PGP8vmgQka68RUqZyL1wVJiEOstugdN18dA%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#38;#39;, &#38;#39;&#38;#39;, &#38;#39;height=300,location=0,menubar=0,resizable=0,scrollbars=0,statusbar=0,toolbar=0,width=500&#38;#39;); return false;&#34; title=&#34;Reveal this e-mail address&#34;&#62;...&#60;/a&#62;@gmail.com&#60;/a&#62;&#60;br&#62;Skype: � � �David Leonardi (S3thxx)&#60;br&#62;**********************************************&#60;br&#62;&#60;br&#62;&#60;br&#62;
&#60;/div&#62;







&lt;!-- begin subscription_form_widget.tmpl --&gt; 



 

    &lt;form action=&quot;http://dadamailproject.com/cgi-bin/dada/mail.cgi&quot; method=&quot;post&quot;&gt;

 

&lt;fieldset&gt;
&lt;legend&gt;
 Subscribe/Unsubscribe  on Dada Mail Developers
&lt;/legend&gt;

 
    

    &lt;input type=&quot;hidden&quot; name=&quot;list&quot; value=&quot;dadadev&quot; /&gt;


&lt;p&gt;
&lt;label for=&quot;email&quot; style=&quot;width: 7em;float: left;text-align: right;margin-right: 0.5em;display: block&quot; &gt;
Email&amp;nbsp;Address: 
&lt;/label&gt;
 
	&lt;input type=&quot;text&quot; name=&quot;email&quot; id=&quot;email&quot; value=&quot;&quot; /&gt; &lt;span class=&quot;error&quot;&gt;* Required&lt;/span&gt;
 

&lt;/p&gt;

 

	 

 


&lt;hr style=&quot;border-top: 1px solid black;&quot; /&gt; 

 
    &lt;p&gt;
    &lt;label for=&quot;f_s&quot; style=&quot;width: 7em;float: left;text-align: right;margin-right: 0.5em;display: block&quot;&gt;
    Subscribe
    &lt;/label&gt;
    &lt;input type=&quot;radio&quot; name=&quot;f&quot; id=&quot;f_s&quot; value=&quot;subscribe&quot; checked=&quot;checked&quot; /&gt;
    &lt;/p&gt; 
    
    &lt;p&gt; 
    &lt;label for=&quot;f_u&quot; style=&quot;width: 7em;float: left;text-align: right;margin-right: 0.5em;display: block&quot;&gt;Unsubscribe&lt;/label&gt; 
    &lt;input type=&quot;radio&quot; name=&quot;f&quot;  id=&quot;f_u&quot;  value=&quot;unsubscribe&quot;  /&gt;
    &lt;/p&gt;   

 

&lt;hr style=&quot;border-top: 1px solid black;&quot; /&gt; 

&lt;p style=&quot;text-align:right;display:block&quot;&gt;
&lt;input type=&quot;submit&quot; value=&quot;Submit Your Information&quot; class=&quot;processing&quot; /&gt;
&lt;/p&gt; 


 




&lt;/fieldset&gt;
&lt;/form&gt; 



  
&lt;!-- end subscription_form_widget.tmpl --&gt; 
</description>
		 <pubDate>Mon, 22 Feb 2010 09:04:00 GMT</pubDate>
		 <guid>http://dadamailproject.com/cgi-bin/dada/mail.cgi/archive/dadadev/20100222040452/</guid>
		</item>

	
	 
		<item>
		 <title>[dadadev] Email to Cell Phone Text Message</title>
		 <link>http://dadamailproject.com/cgi-bin/dada/mail.cgi/archive/dadadev/20100220223338/</link>
		 <description>
&#60;!--open_img--&#62;&#60;img src=&#34;http://dadamailproject.com/cgi-bin/dada/mail.cgi/spacer_image/dadadev//spacer.png&#34; /&#62;&#60;!--/open_img--&#62;

&#60;div&#62;&#60;font size=&#34;2&#34; face=&#34;Arial&#34;&#62;I was asked today to see if I could have emails 
also sent to cell phones as text messages. A perfectly reasonable request since 
we all live by our cell phones. I know that I can send an email to my cell phone 
by appending the cell phone carrier's text messaging email domain to my phone 
number. For example, if I send an email to the address &#60;/font&#62;&#60;a href=&#34;mailto:1800&#60;a href=&#34;http://mailhide.recaptcha.net/d?c=ZDNaX0vyYRQqVmTV1uHtR0roWmxOm9MU7OAc_8KjfNg%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#34; onclick=&#34;window.open(&#38;#39;http://mailhide.recaptcha.net/d?c=ZDNaX0vyYRQqVmTV1uHtR0roWmxOm9MU7OAc_8KjfNg%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#38;#39;, &#38;#39;&#38;#39;, &#38;#39;height=300,location=0,menubar=0,resizable=0,scrollbars=0,statusbar=0,toolbar=0,width=500&#38;#39;); return false;&#34; title=&#34;Reveal this e-mail address&#34;&#62;...&#60;/a&#62;@vswpix.com&#34;&#62;&#60;font size=&#34;2&#34; face=&#34;Arial&#34;&#62;1800&#60;a href=&#34;http://mailhide.recaptcha.net/d?c=ZDNaX0vyYRQqVmTV1uHtR0roWmxOm9MU7OAc_8KjfNg%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#34; onclick=&#34;window.open(&#38;#39;http://mailhide.recaptcha.net/d?c=ZDNaX0vyYRQqVmTV1uHtR0roWmxOm9MU7OAc_8KjfNg%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#38;#39;, &#38;#39;&#38;#39;, &#38;#39;height=300,location=0,menubar=0,resizable=0,scrollbars=0,statusbar=0,toolbar=0,width=500&#38;#39;); return false;&#34; title=&#34;Reveal this e-mail address&#34;&#62;...&#60;/a&#62;@vswpix.com&#60;/font&#62;&#60;/a&#62;&#60;font size=&#34;2&#34; face=&#34;Arial&#34;&#62; it will be 
delivered by Verizon as a text message to the phone. Every carrier has their own 
text message domain. Here is&#38;nbsp;a partial list:&#60;/font&#62;&#60;/div&#62;
&#60;div&#62;&#60;font size=&#34;2&#34; face=&#34;Arial&#34;&#62;&#60;/font&#62;&#38;nbsp;&#60;/div&#62;
&#60;p style=&#34;MARGIN: 0in 0in 0pt&#34; class=&#34;MsoNormal&#34;&#62;&#60;span style=&#34;FONT-FAMILY: &#38;#39;Courier New&#38;#39;&#34;&#62;Alltel:&#60;span style=&#34;mso-spacerun: yes&#34;&#62;&#38;nbsp;&#38;nbsp;&#38;nbsp;&#38;nbsp;&#38;nbsp;&#38;nbsp;&#38;nbsp; 
&#60;/span&#62;phon&#60;a href=&#34;http://mailhide.recaptcha.net/d?c=5z7nD0xXJzR7aiq%2d4PSlDFMPFIl%2dpL9OfPFoX9Jx3OM%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#34; onclick=&#34;window.open(&#38;#39;http://mailhide.recaptcha.net/d?c=5z7nD0xXJzR7aiq%2d4PSlDFMPFIl%2dpL9OfPFoX9Jx3OM%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#38;#39;, &#38;#39;&#38;#39;, &#38;#39;height=300,location=0,menubar=0,resizable=0,scrollbars=0,statusbar=0,toolbar=0,width=500&#38;#39;); return false;&#34; title=&#34;Reveal this e-mail address&#34;&#62;...&#60;/a&#62;@message.alltel.com&#60;br&#62;AT&#38;amp;T:&#60;span style=&#34;mso-spacerun: yes&#34;&#62;&#38;nbsp;&#38;nbsp;&#38;nbsp;&#38;nbsp;&#38;nbsp;&#38;nbsp;&#38;nbsp;&#38;nbsp;&#38;nbsp; 
&#60;/span&#62;phon&#60;a href=&#34;http://mailhide.recaptcha.net/d?c=H8lKKL9S4tfpABMwd8Y%2dv1QJvx4NaZ1Qd7TuNLdCaVM%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#34; onclick=&#34;window.open(&#38;#39;http://mailhide.recaptcha.net/d?c=H8lKKL9S4tfpABMwd8Y%2dv1QJvx4NaZ1Qd7TuNLdCaVM%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#38;#39;, &#38;#39;&#38;#39;, &#38;#39;height=300,location=0,menubar=0,resizable=0,scrollbars=0,statusbar=0,toolbar=0,width=500&#38;#39;); return false;&#34; title=&#34;Reveal this e-mail address&#34;&#62;...&#60;/a&#62;@txt.att.net&#60;o:p&#62;&#60;/o:p&#62;&#60;/span&#62;&#60;/p&#62;
&#60;p style=&#34;MARGIN: 0in 0in 0pt&#34; class=&#34;MsoNormal&#34;&#62;&#60;span style=&#34;FONT-FAMILY: &#38;#39;Courier New&#38;#39;&#34;&#62;Cingular:&#60;span style=&#34;mso-spacerun: yes&#34;&#62;&#38;nbsp;&#38;nbsp;&#38;nbsp;&#38;nbsp;&#38;nbsp; 
&#60;/span&#62;phon&#60;a href=&#34;http://mailhide.recaptcha.net/d?c=bWd%2dHBHP0dl6zXiXn8uCFSW61JwvXJblhOqe9p0nfZI%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#34; onclick=&#34;window.open(&#38;#39;http://mailhide.recaptcha.net/d?c=bWd%2dHBHP0dl6zXiXn8uCFSW61JwvXJblhOqe9p0nfZI%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#38;#39;, &#38;#39;&#38;#39;, &#38;#39;height=300,location=0,menubar=0,resizable=0,scrollbars=0,statusbar=0,toolbar=0,width=500&#38;#39;); return false;&#34; title=&#34;Reveal this e-mail address&#34;&#62;...&#60;/a&#62;@cingularme.com &#60;br&#62;Nextel:&#60;span style=&#34;mso-spacerun: yes&#34;&#62;&#38;nbsp;&#38;nbsp;&#38;nbsp;&#38;nbsp;&#38;nbsp;&#38;nbsp;&#38;nbsp; 
&#60;/span&#62;phon&#60;a href=&#34;http://mailhide.recaptcha.net/d?c=5z7nD0xXJzR7aiq%2d4PSlDP6ijGRFlYAEvHXs_7dZ7Ug%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#34; onclick=&#34;window.open(&#38;#39;http://mailhide.recaptcha.net/d?c=5z7nD0xXJzR7aiq%2d4PSlDP6ijGRFlYAEvHXs_7dZ7Ug%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#38;#39;, &#38;#39;&#38;#39;, &#38;#39;height=300,location=0,menubar=0,resizable=0,scrollbars=0,statusbar=0,toolbar=0,width=500&#38;#39;); return false;&#34; title=&#34;Reveal this e-mail address&#34;&#62;...&#60;/a&#62;@messaging.nextel.com &#60;br&#62;Qwest:&#60;span style=&#34;mso-spacerun: yes&#34;&#62;&#38;nbsp;&#38;nbsp;&#38;nbsp; &#60;/span&#62;&#60;span style=&#34;mso-spacerun: yes&#34;&#62;&#38;nbsp;&#38;nbsp;&#38;nbsp;&#38;nbsp;&#60;/span&#62;&#60;span style=&#34;mso-spacerun: yes&#34;&#62;&#38;nbsp;&#60;/span&#62;phon&#60;a href=&#34;http://mailhide.recaptcha.net/d?c=FgankWXFf5T9w88JqA5PpnPMwQYX9%2dopuvO_y2NmcfM%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#34; onclick=&#34;window.open(&#38;#39;http://mailhide.recaptcha.net/d?c=FgankWXFf5T9w88JqA5PpnPMwQYX9%2dopuvO_y2NmcfM%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#38;#39;, &#38;#39;&#38;#39;, &#38;#39;height=300,location=0,menubar=0,resizable=0,scrollbars=0,statusbar=0,toolbar=0,width=500&#38;#39;); return false;&#34; title=&#34;Reveal this e-mail address&#34;&#62;...&#60;/a&#62;@qwestmp.com&#60;o:p&#62;&#60;/o:p&#62;&#60;/span&#62;&#60;/p&#62;
&#60;p style=&#34;MARGIN: 0in 0in 0pt&#34; class=&#34;MsoNormal&#34;&#62;&#60;span style=&#34;FONT-FAMILY: &#38;#39;Courier New&#38;#39;&#34;&#62;Sprint:&#60;span style=&#34;mso-spacerun: yes&#34;&#62;&#38;nbsp;&#38;nbsp;&#38;nbsp;&#38;nbsp;&#38;nbsp;&#38;nbsp;&#38;nbsp; 
&#60;/span&#62;phon&#60;a href=&#34;http://mailhide.recaptcha.net/d?c=5z7nD0xXJzR7aiq%2d4PSlDEe99uB6pRiReP7m4T_DphEOe2TfV5AHR3_gk4vSYIkg&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#34; onclick=&#34;window.open(&#38;#39;http://mailhide.recaptcha.net/d?c=5z7nD0xXJzR7aiq%2d4PSlDEe99uB6pRiReP7m4T_DphEOe2TfV5AHR3_gk4vSYIkg&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#38;#39;, &#38;#39;&#38;#39;, &#38;#39;height=300,location=0,menubar=0,resizable=0,scrollbars=0,statusbar=0,toolbar=0,width=500&#38;#39;); return false;&#34; title=&#34;Reveal this e-mail address&#34;&#62;...&#60;/a&#62;@messaging.sprintpcs.com&#60;br&#62;T-Mobile:&#60;span style=&#34;mso-spacerun: yes&#34;&#62;&#38;nbsp;&#38;nbsp;&#38;nbsp;&#38;nbsp;&#38;nbsp; 
&#60;/span&#62;phon&#60;a href=&#34;http://mailhide.recaptcha.net/d?c=Nd%2dzfnRSFu6KftpstVQn_GPGlleH5ClH3KEEddC8EBk%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#34; onclick=&#34;window.open(&#38;#39;http://mailhide.recaptcha.net/d?c=Nd%2dzfnRSFu6KftpstVQn_GPGlleH5ClH3KEEddC8EBk%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#38;#39;, &#38;#39;&#38;#39;, &#38;#39;height=300,location=0,menubar=0,resizable=0,scrollbars=0,statusbar=0,toolbar=0,width=500&#38;#39;); return false;&#34; title=&#34;Reveal this e-mail address&#34;&#62;...&#60;/a&#62;@tmomail.net &#60;br&#62;US Cellular:&#60;span style=&#34;mso-spacerun: yes&#34;&#62;&#38;nbsp;&#38;nbsp; 
&#60;/span&#62;phon&#60;a href=&#34;http://mailhide.recaptcha.net/d?c=avtTq3oCgz64G8GqjdvyZAGb_6dPv7dK2dUvS%2dgEHQs%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#34; onclick=&#34;window.open(&#38;#39;http://mailhide.recaptcha.net/d?c=avtTq3oCgz64G8GqjdvyZAGb_6dPv7dK2dUvS%2dgEHQs%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#38;#39;, &#38;#39;&#38;#39;, &#38;#39;height=300,location=0,menubar=0,resizable=0,scrollbars=0,statusbar=0,toolbar=0,width=500&#38;#39;); return false;&#34; title=&#34;Reveal this e-mail address&#34;&#62;...&#60;/a&#62;@email.uscc.net&#60;o:p&#62;&#60;/o:p&#62;&#60;/span&#62;&#60;/p&#62;
&#60;div&#62;&#60;span style=&#34;FONT-FAMILY: &#38;#39;Courier New&#38;#39;; FONT-SIZE: 12pt; mso-fareast-font-family: &#38;#39;Times New Roman&#38;#39;; mso-ansi-language: EN-US; mso-fareast-language: EN-US; mso-bidi-language: AR-SA&#34;&#62;Verizon:&#60;span style=&#34;mso-spacerun: yes&#34;&#62;&#38;nbsp;&#38;nbsp;&#38;nbsp;&#38;nbsp; &#60;/span&#62;&#60;span style=&#34;mso-spacerun: yes&#34;&#62;&#38;nbsp;&#60;/span&#62;&#60;span style=&#34;mso-spacerun: yes&#34;&#62;&#38;nbsp;&#60;/span&#62;phon&#60;a href=&#34;http://mailhide.recaptcha.net/d?c=aDsim3VY4iDwZPdYDWUJYP1lsSuVzXLRMEYuqvxnY1Y%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#34; onclick=&#34;window.open(&#38;#39;http://mailhide.recaptcha.net/d?c=aDsim3VY4iDwZPdYDWUJYP1lsSuVzXLRMEYuqvxnY1Y%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#38;#39;, &#38;#39;&#38;#39;, &#38;#39;height=300,location=0,menubar=0,resizable=0,scrollbars=0,statusbar=0,toolbar=0,width=500&#38;#39;); return false;&#34; title=&#34;Reveal this e-mail address&#34;&#62;...&#60;/a&#62;@vzwpix.com&#60;br&#62;Virgin Mobile: 
&#60;a href=&#34;mailto:phon&#60;a href=&#34;http://mailhide.recaptcha.net/d?c=hV9HAFeh1zPW1sYV64HOiRx5XpKRZ%2d8IsYPIVXFfOyg%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#34; onclick=&#34;window.open(&#38;#39;http://mailhide.recaptcha.net/d?c=hV9HAFeh1zPW1sYV64HOiRx5XpKRZ%2d8IsYPIVXFfOyg%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#38;#39;, &#38;#39;&#38;#39;, &#38;#39;height=300,location=0,menubar=0,resizable=0,scrollbars=0,statusbar=0,toolbar=0,width=500&#38;#39;); return false;&#34; title=&#34;Reveal this e-mail address&#34;&#62;...&#60;/a&#62;@vmobl.com&#34;&#62;phon&#60;a href=&#34;http://mailhide.recaptcha.net/d?c=hV9HAFeh1zPW1sYV64HOiRx5XpKRZ%2d8IsYPIVXFfOyg%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#34; onclick=&#34;window.open(&#38;#39;http://mailhide.recaptcha.net/d?c=hV9HAFeh1zPW1sYV64HOiRx5XpKRZ%2d8IsYPIVXFfOyg%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#38;#39;, &#38;#39;&#38;#39;, &#38;#39;height=300,location=0,menubar=0,resizable=0,scrollbars=0,statusbar=0,toolbar=0,width=500&#38;#39;); return false;&#34; title=&#34;Reveal this e-mail address&#34;&#62;...&#60;/a&#62;@vmobl.com&#60;/a&#62;&#60;/span&#62;&#60;/div&#62;
&#60;div&#62;&#60;span style=&#34;FONT-FAMILY: &#38;#39;Courier New&#38;#39;; FONT-SIZE: 12pt; mso-fareast-font-family: &#38;#39;Times New Roman&#38;#39;; mso-ansi-language: EN-US; mso-fareast-language: EN-US; mso-bidi-language: AR-SA&#34;&#62;&#60;/span&#62;&#38;nbsp;&#60;/div&#62;
&#60;div&#62;&#60;span style=&#34;FONT-FAMILY: &#38;#39;Courier New&#38;#39;; FONT-SIZE: 12pt; mso-fareast-font-family: &#38;#39;Times New Roman&#38;#39;; mso-ansi-language: EN-US; mso-fareast-language: EN-US; mso-bidi-language: AR-SA&#34;&#62;&#60;font size=&#34;2&#34; face=&#34;Arial&#34;&#62;So - how could this be implemented using DadaMail? I would 
like to add a subscriber field where people could enter their cell phone number 
if they would also like to receive text messages. There are&#38;nbsp;some 
problems:&#60;/font&#62;&#60;/span&#62;&#60;/div&#62;
&#60;div&#62;&#60;span style=&#34;FONT-FAMILY: &#38;#39;Courier New&#38;#39;; FONT-SIZE: 12pt; mso-fareast-font-family: &#38;#39;Times New Roman&#38;#39;; mso-ansi-language: EN-US; mso-fareast-language: EN-US; mso-bidi-language: AR-SA&#34;&#62;&#60;font size=&#34;2&#34; face=&#34;Arial&#34;&#62;&#60;/font&#62;&#60;/span&#62;&#38;nbsp;&#60;/div&#62;
&#60;div&#62;&#60;span style=&#34;FONT-FAMILY: &#38;#39;Courier New&#38;#39;; FONT-SIZE: 12pt; mso-fareast-font-family: &#38;#39;Times New Roman&#38;#39;; mso-ansi-language: EN-US; mso-fareast-language: EN-US; mso-bidi-language: AR-SA&#34;&#62;&#60;font size=&#34;2&#34; face=&#34;Arial&#34;&#62;1) The&#38;nbsp;phone carrier would would also need to be 
identified. Can a subscriber field be a combo box where a list of providers 
would be presented?&#60;/font&#62;&#60;/span&#62;&#60;/div&#62;
&#60;div&#62;&#60;span style=&#34;FONT-FAMILY: &#38;#39;Courier New&#38;#39;; FONT-SIZE: 12pt; mso-fareast-font-family: &#38;#39;Times New Roman&#38;#39;; mso-ansi-language: EN-US; mso-fareast-language: EN-US; mso-bidi-language: AR-SA&#34;&#62;&#60;font size=&#34;2&#34; face=&#34;Arial&#34;&#62;&#60;/font&#62;&#60;/span&#62;&#38;nbsp;&#60;/div&#62;
&#60;div&#62;&#60;span style=&#34;FONT-FAMILY: &#38;#39;Courier New&#38;#39;; FONT-SIZE: 12pt; mso-fareast-font-family: &#38;#39;Times New Roman&#38;#39;; mso-ansi-language: EN-US; mso-fareast-language: EN-US; mso-bidi-language: AR-SA&#34;&#62;&#60;font size=&#34;2&#34; face=&#34;Arial&#34;&#62;2) The carrier text message domain would need to be appended 
to the phone number to make the &#34;email address.&#34;&#60;/font&#62;&#60;/span&#62;&#60;/div&#62;
&#60;div&#62;&#60;span style=&#34;FONT-FAMILY: &#38;#39;Courier New&#38;#39;; FONT-SIZE: 12pt; mso-fareast-font-family: &#38;#39;Times New Roman&#38;#39;; mso-ansi-language: EN-US; mso-fareast-language: EN-US; mso-bidi-language: AR-SA&#34;&#62;&#60;font size=&#34;2&#34; face=&#34;Arial&#34;&#62;&#60;/font&#62;&#60;/span&#62;&#38;nbsp;&#60;/div&#62;
&#60;div&#62;&#60;span style=&#34;FONT-FAMILY: &#38;#39;Courier New&#38;#39;; FONT-SIZE: 12pt; mso-fareast-font-family: &#38;#39;Times New Roman&#38;#39;; mso-ansi-language: EN-US; mso-fareast-language: EN-US; mso-bidi-language: AR-SA&#34;&#62;&#60;font size=&#34;2&#34; face=&#34;Arial&#34;&#62;3)&#38;nbsp;Can a single&#38;nbsp;list entry have an email also sent 
to another email address from a subscriber field? I could manually add the phone 
&#34;email address&#34; as a second entry in the list, but that raises subscription and 
unsubscription issues.&#60;/font&#62;&#60;/span&#62;&#60;/div&#62;
&#60;div&#62;&#60;span style=&#34;FONT-FAMILY: &#38;#39;Courier New&#38;#39;; FONT-SIZE: 12pt; mso-fareast-font-family: &#38;#39;Times New Roman&#38;#39;; mso-ansi-language: EN-US; mso-fareast-language: EN-US; mso-bidi-language: AR-SA&#34;&#62;&#60;font size=&#34;2&#34; face=&#34;Arial&#34;&#62;&#60;/font&#62;&#60;/span&#62;&#38;nbsp;&#60;/div&#62;
&#60;div&#62;&#60;span style=&#34;FONT-FAMILY: &#38;#39;Courier New&#38;#39;; FONT-SIZE: 12pt; mso-fareast-font-family: &#38;#39;Times New Roman&#38;#39;; mso-ansi-language: EN-US; mso-fareast-language: EN-US; mso-bidi-language: AR-SA&#34;&#62;&#60;font size=&#34;2&#34; face=&#34;Arial&#34;&#62;This might be outside the responsibilities of DadaMail, but I 
thought I would start my quest by presenting the issue here. Any thoughts on 
this? Are there other ways to send emails to text messages?&#60;/font&#62;&#60;/span&#62;&#60;/div&#62;
&#60;div&#62;&#60;span style=&#34;FONT-FAMILY: &#38;#39;Courier New&#38;#39;; FONT-SIZE: 12pt; mso-fareast-font-family: &#38;#39;Times New Roman&#38;#39;; mso-ansi-language: EN-US; mso-fareast-language: EN-US; mso-bidi-language: AR-SA&#34;&#62;&#60;font size=&#34;2&#34; face=&#34;Arial&#34;&#62;&#60;/font&#62;&#60;/span&#62;&#38;nbsp;&#60;/div&#62;
&#60;div&#62;&#60;span style=&#34;FONT-FAMILY: &#38;#39;Courier New&#38;#39;; FONT-SIZE: 12pt; mso-fareast-font-family: &#38;#39;Times New Roman&#38;#39;; mso-ansi-language: EN-US; mso-fareast-language: EN-US; mso-bidi-language: AR-SA&#34;&#62;&#60;font size=&#34;2&#34; face=&#34;Arial&#34;&#62;Carl K.&#60;/font&#62;&#60;/span&#62;&#60;/div&#62;
&#60;div&#62;&#60;span style=&#34;FONT-FAMILY: &#38;#39;Courier New&#38;#39;; FONT-SIZE: 12pt; mso-fareast-font-family: &#38;#39;Times New Roman&#38;#39;; mso-ansi-language: EN-US; mso-fareast-language: EN-US; mso-bidi-language: AR-SA&#34;&#62;&#60;font size=&#34;2&#34; face=&#34;Arial&#34;&#62;&#60;/font&#62;&#60;/span&#62;&#38;nbsp;&#60;/div&#62;





&lt;!-- begin subscription_form_widget.tmpl --&gt; 



 

    &lt;form action=&quot;http://dadamailproject.com/cgi-bin/dada/mail.cgi&quot; method=&quot;post&quot;&gt;

 

&lt;fieldset&gt;
&lt;legend&gt;
 Subscribe/Unsubscribe  on Dada Mail Developers
&lt;/legend&gt;

 
    

    &lt;input type=&quot;hidden&quot; name=&quot;list&quot; value=&quot;dadadev&quot; /&gt;


&lt;p&gt;
&lt;label for=&quot;email&quot; style=&quot;width: 7em;float: left;text-align: right;margin-right: 0.5em;display: block&quot; &gt;
Email&amp;nbsp;Address: 
&lt;/label&gt;
 
	&lt;input type=&quot;text&quot; name=&quot;email&quot; id=&quot;email&quot; value=&quot;&quot; /&gt; &lt;span class=&quot;error&quot;&gt;* Required&lt;/span&gt;
 

&lt;/p&gt;

 

	 

 


&lt;hr style=&quot;border-top: 1px solid black;&quot; /&gt; 

 
    &lt;p&gt;
    &lt;label for=&quot;f_s&quot; style=&quot;width: 7em;float: left;text-align: right;margin-right: 0.5em;display: block&quot;&gt;
    Subscribe
    &lt;/label&gt;
    &lt;input type=&quot;radio&quot; name=&quot;f&quot; id=&quot;f_s&quot; value=&quot;subscribe&quot; checked=&quot;checked&quot; /&gt;
    &lt;/p&gt; 
    
    &lt;p&gt; 
    &lt;label for=&quot;f_u&quot; style=&quot;width: 7em;float: left;text-align: right;margin-right: 0.5em;display: block&quot;&gt;Unsubscribe&lt;/label&gt; 
    &lt;input type=&quot;radio&quot; name=&quot;f&quot;  id=&quot;f_u&quot;  value=&quot;unsubscribe&quot;  /&gt;
    &lt;/p&gt;   

 

&lt;hr style=&quot;border-top: 1px solid black;&quot; /&gt; 

&lt;p style=&quot;text-align:right;display:block&quot;&gt;
&lt;input type=&quot;submit&quot; value=&quot;Submit Your Information&quot; class=&quot;processing&quot; /&gt;
&lt;/p&gt; 


 




&lt;/fieldset&gt;
&lt;/form&gt; 



  
&lt;!-- end subscription_form_widget.tmpl --&gt; 
</description>
		 <pubDate>Sun, 21 Feb 2010 03:33:00 GMT</pubDate>
		 <guid>http://dadamailproject.com/cgi-bin/dada/mail.cgi/archive/dadadev/20100220223338/</guid>
		</item>

	
	 
		<item>
		 <title>[dadadev] Re: Slowdowns again</title>
		 <link>http://dadamailproject.com/cgi-bin/dada/mail.cgi/archive/dadadev/20100220152756/</link>
		 <description>


&#60;font face=&#34;Helvetica, Arial, sans-serif&#34;&#62;I saw some of it when it came
through and just read the whole thing from the link.&#38;nbsp; &#60;br&#62;
&#60;br&#62;
Sorry, my mind was wandering last night when I was thinking about how
I'd do it in php if I had to and I sent it through thinking it might be
helpful.&#38;nbsp; Looking over the module you described, it looks like a very
similar concept, just a different programming language.&#60;br&#62;
&#60;br&#62;
&#60;/font&#62;Justin J wrote:
&#60;blockquote cite=&#34;mid:2010&#60;a href=&#34;http://mailhide.recaptcha.net/d?c=iAmlNmGt2EWR8swiQUNLGTW%2dokmAK7fJQDan_1kJzxxiNSqCy6vRnE_dt9kdbK4g&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#34; onclick=&#34;window.open(&#38;#39;http://mailhide.recaptcha.net/d?c=iAmlNmGt2EWR8swiQUNLGTW%2dokmAK7fJQDan_1kJzxxiNSqCy6vRnE_dt9kdbK4g&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#38;#39;, &#38;#39;&#38;#39;, &#38;#39;height=300,location=0,menubar=0,resizable=0,scrollbars=0,statusbar=0,toolbar=0,width=500&#38;#39;); return false;&#34; title=&#34;Reveal this e-mail address&#34;&#62;...&#60;/a&#62;@dadamailproject.com&#34;&#62;
  &#60;pre wrap=&#34;&#34;&#62;On Feb 20, 2010, at 12:37 PM, John Collins wrote:
  &#60;/pre&#62;
  &#60;blockquote&#62;
    &#60;pre wrap=&#34;&#34;&#62;However, I do have experience with using different languages in php (not the actual languages, but the mechanics) and it is really pretty simple, but again I don't know how to translate it into perl.
    &#60;/pre&#62;
  &#60;/blockquote&#62;
  &#60;pre wrap=&#34;&#34;&#62;&#60;!----&#62;
You missed the whole spiel I did on getting something similar to this into Dada Mail? 

	&#60;a class=&#34;moz-txt-link-freetext&#34; href=&#34;http://dadamailproject.com/cgi-bin/dada/mail.cgi/archive/dadadev/20100207012503/&#34;&#62;http://dadamailproject.com/cgi-bin/dada/mail.cgi/archive/dadadev/20100207012503/&#60;/a&#62;

What I'm putting into Dada Mail will kick the system you described to the curb.  To the curb! :)

  &#60;/pre&#62;
  &#60;blockquote&#62;
    &#60;pre wrap=&#34;&#34;&#62;Adding new language files would be as easy as getting the translations.
    &#60;/pre&#62;
  &#60;/blockquote&#62;
  &#60;pre wrap=&#34;&#34;&#62;&#60;!----&#62;
Yup, read my thingy - they system I'm using has this too -  except in my system, those files can be auto-updated, so when the program gets upgraded, so can the language files. If something is missing, the program doesn't break, either. 

What I wrote gets technical, but to people who are doing the translation, it's just file they need to read and translate. 

I'm currently working to get the program in shape, John, to make this happen, but it def. doesn't happen over night. The first step is to actually get Dada Mail to work with different character sets, since it doesn't, right now. The next step is to normalize some of the text in the program - and shorten it too, so translation is easier. After that, I have to make all the text that needs to be translated and then, I have to do a translation myself, to show how its done (and to make sure it works). A lot of work. 

  &#60;/pre&#62;
  &#60;blockquote&#62;
    &#60;pre wrap=&#34;&#34;&#62;Another way would be to use a database to store the various translations and query it for the translation terms.  I've not done it this way, but just thinking about it, I think I would prefer it.
    &#60;/pre&#62;
  &#60;/blockquote&#62;
  &#60;pre wrap=&#34;&#34;&#62;&#60;!----&#62;
The system I'm putting in place supports this too, if someone is to be so bold. I don't think I'll be shipping Dada Mail with the translations like that, though. 

  &#60;/pre&#62;
&#60;/blockquote&#62;
&#60;br&#62;
&#60;div class=&#34;moz-signature&#34;&#62;&#60;br&#62;

&#60;title&#62;&#60;/title&#62;
&#60;span style=&#34;color: rgb(0, 0, 0);&#34;&#62;-------------------------------------------------&#60;/span&#62;&#60;br style=&#34;color: rgb(0, 0, 0);&#34;&#62;
&#60;span style=&#34;color: rgb(0, 0, 0);&#34;&#62;
John Collins&#60;/span&#62;&#60;br style=&#34;color: rgb(0, 0, 0);&#34;&#62;
&#60;span style=&#34;color: rgb(0, 0, 0);&#34;&#62;
Meetings and Mixers&#60;/span&#62;&#60;br style=&#34;color: rgb(0, 0, 0);&#34;&#62;
&#60;span style=&#34;color: rgb(0, 0, 0);&#34;&#62;
Box 80461&#60;/span&#62;&#60;br style=&#34;color: rgb(0, 0, 0);&#34;&#62;
&#60;span style=&#34;color: rgb(0, 0, 0);&#34;&#62;
Rancho Santa Margarita, CA 92688&#60;/span&#62;&#60;br style=&#34;color: rgb(0, 0, 0);&#34;&#62;
&#60;span style=&#34;color: rgb(0, 0, 0);&#34;&#62;
c949 689 7070&#60;/span&#62;&#60;br style=&#34;color: rgb(0, 0, 0);&#34;&#62;
&#60;span style=&#34;color: rgb(0, 0, 0);&#34;&#62;
&#60;a class=&#34;moz-txt-link-abbreviated&#34; href=&#34;mailto:j&#60;a href=&#34;http://mailhide.recaptcha.net/d?c=CYcwsTGgmYzeIwpYyfY4yUDiKSNVF8FZ1jCnKrhuBUs%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#34; onclick=&#34;window.open(&#38;#39;http://mailhide.recaptcha.net/d?c=CYcwsTGgmYzeIwpYyfY4yUDiKSNVF8FZ1jCnKrhuBUs%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#38;#39;, &#38;#39;&#38;#39;, &#38;#39;height=300,location=0,menubar=0,resizable=0,scrollbars=0,statusbar=0,toolbar=0,width=500&#38;#39;); return false;&#34; title=&#34;Reveal this e-mail address&#34;&#62;...&#60;/a&#62;@meetingsandmixers.com&#34;&#62;j&#60;a href=&#34;http://mailhide.recaptcha.net/d?c=CYcwsTGgmYzeIwpYyfY4yUDiKSNVF8FZ1jCnKrhuBUs%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#34; onclick=&#34;window.open(&#38;#39;http://mailhide.recaptcha.net/d?c=CYcwsTGgmYzeIwpYyfY4yUDiKSNVF8FZ1jCnKrhuBUs%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#38;#39;, &#38;#39;&#38;#39;, &#38;#39;height=300,location=0,menubar=0,resizable=0,scrollbars=0,statusbar=0,toolbar=0,width=500&#38;#39;); return false;&#34; title=&#34;Reveal this e-mail address&#34;&#62;...&#60;/a&#62;@meetingsandmixers.com&#60;/a&#62;&#60;/span&#62;&#60;br style=&#34;color: rgb(0, 0, 0);&#34;&#62;
&#60;span style=&#34;color: rgb(0, 0, 0);&#34;&#62;
&#60;a class=&#34;moz-txt-link-freetext&#34; href=&#34;http://www.meetingsandmixers.com/&#34;&#62;http://www.meetingsandmixers.com/&#60;/a&#62;&#60;/span&#62;&#60;br style=&#34;color: rgb(0, 0, 0);&#34;&#62;
&#60;br style=&#34;color: rgb(0, 0, 0);&#34;&#62;
&#60;/div&#62;






&lt;!-- begin subscription_form_widget.tmpl --&gt; 



 

    &lt;form action=&quot;http://dadamailproject.com/cgi-bin/dada/mail.cgi&quot; method=&quot;post&quot;&gt;

 

&lt;fieldset&gt;
&lt;legend&gt;
 Subscribe/Unsubscribe  on Dada Mail Developers
&lt;/legend&gt;

 
    

    &lt;input type=&quot;hidden&quot; name=&quot;list&quot; value=&quot;dadadev&quot; /&gt;


&lt;p&gt;
&lt;label for=&quot;email&quot; style=&quot;width: 7em;float: left;text-align: right;margin-right: 0.5em;display: block&quot; &gt;
Email&amp;nbsp;Address: 
&lt;/label&gt;
 
	&lt;input type=&quot;text&quot; name=&quot;email&quot; id=&quot;email&quot; value=&quot;&quot; /&gt; &lt;span class=&quot;error&quot;&gt;* Required&lt;/span&gt;
 

&lt;/p&gt;

 

	 

 


&lt;hr style=&quot;border-top: 1px solid black;&quot; /&gt; 

 
    &lt;p&gt;
    &lt;label for=&quot;f_s&quot; style=&quot;width: 7em;float: left;text-align: right;margin-right: 0.5em;display: block&quot;&gt;
    Subscribe
    &lt;/label&gt;
    &lt;input type=&quot;radio&quot; name=&quot;f&quot; id=&quot;f_s&quot; value=&quot;subscribe&quot; checked=&quot;checked&quot; /&gt;
    &lt;/p&gt; 
    
    &lt;p&gt; 
    &lt;label for=&quot;f_u&quot; style=&quot;width: 7em;float: left;text-align: right;margin-right: 0.5em;display: block&quot;&gt;Unsubscribe&lt;/label&gt; 
    &lt;input type=&quot;radio&quot; name=&quot;f&quot;  id=&quot;f_u&quot;  value=&quot;unsubscribe&quot;  /&gt;
    &lt;/p&gt;   

 

&lt;hr style=&quot;border-top: 1px solid black;&quot; /&gt; 

&lt;p style=&quot;text-align:right;display:block&quot;&gt;
&lt;input type=&quot;submit&quot; value=&quot;Submit Your Information&quot; class=&quot;processing&quot; /&gt;
&lt;/p&gt; 


 




&lt;/fieldset&gt;
&lt;/form&gt; 



  
&lt;!-- end subscription_form_widget.tmpl --&gt; 
</description>
		 <pubDate>Sat, 20 Feb 2010 20:27:00 GMT</pubDate>
		 <guid>http://dadamailproject.com/cgi-bin/dada/mail.cgi/archive/dadadev/20100220152756/</guid>
		</item>

	
	 
		<item>
		 <title>[dadadev] Re: Slowdowns again</title>
		 <link>http://dadamailproject.com/cgi-bin/dada/mail.cgi/archive/dadadev/20100220152100/</link>
		 <description>


&#60;font face=&#34;Helvetica, Arial, sans-serif&#34;&#62;Ooops, this is to clarify.&#38;nbsp;
Changed the word to COMPILED and written to files.&#38;nbsp; These weren't
actually sent.&#60;/font&#62;&#38;nbsp; I don't know the send through the server times,
but will test again tonight when I send out the weekly piece.&#60;br&#62;
&#60;br&#62;
Additionally, ran another test...&#60;br&#62;
Also tried a small file, using 3.04&#60;br&#62;
18kb, small msg html and text &#60;br&#62;
3917 of 28624 messages compiled in: 6 minutes, 26 seconds&#60;br&#62;
Average Sending Rate: 36,532 messages/hour&#60;br&#62;
610.87 msgs/minute&#60;br&#62;
&#60;br&#62;
Same msg using 4.03&#60;br&#62;
1064 of 28649 messages compiled in: 3 minutes, 39 seconds&#60;br&#62;
Average Sending Rate: 17,490 messages/hour&#60;br&#62;
291 msgs per minute&#60;br&#62;
&#60;br&#62;
&#60;br&#62;
John Collins wrote:
&#60;blockquote cite=&#34;mid:2010&#60;a href=&#34;http://mailhide.recaptcha.net/d?c=3i_8Lga4H4hv5JMd2zGYw0mejC7yPrWOYWsOV4tZCeME%2dPTGogezBadKaN4xuwaa&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#34; onclick=&#34;window.open(&#38;#39;http://mailhide.recaptcha.net/d?c=3i_8Lga4H4hv5JMd2zGYw0mejC7yPrWOYWsOV4tZCeME%2dPTGogezBadKaN4xuwaa&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#38;#39;, &#38;#39;&#38;#39;, &#38;#39;height=300,location=0,menubar=0,resizable=0,scrollbars=0,statusbar=0,toolbar=0,width=500&#38;#39;); return false;&#34; title=&#34;Reveal this e-mail address&#34;&#62;...&#60;/a&#62;@dadamailproject.com&#34;&#62;&#60;img moz-do-not-send=&#34;true&#34; src=&#34;http://dadamailproject.com/cgi-bin/dada/mail.cgi/spacer_image/dadadev/20100220143730/spacer.png&#34;&#62;&#60;!--/open_img--&#62;This
is just an FYI. (I'm really not trying to beat this to death)&#60;br&#62;
  &#60;br&#62;
For testing purposes, I downgraded from 4.03 to 3.04 this morning.&#38;nbsp; I
used the same mail file as was used last Saturday.&#38;nbsp; The following
tests, do not represent an actual sending as this message was already
sent a week ago.&#38;nbsp; I inserted the code in the config file that causes
them to be compiled, but not sent.&#60;br&#62;
  &#60;br&#62;
Sat, Feb 20, 2010&#60;br&#62;
Test Dada v4.03&#60;br&#62;
Message size: 184kb, html and text, same msg as last week (both html
and plain text)&#60;br&#62;
339 of 28624 messages &#60;font color=&#34;#ff0000&#34;&#62;&#60;b&#62;COMPILED&#60;/b&#62;&#60;/font&#62; in:
6 minutes, 35 seconds&#60;br&#62;
Average Sending Rate: 3,090 messages/hour&#60;br&#62;
51.5 msgs per minute&#60;br&#62;
  &#60;br&#62;
-------------------------------&#60;br&#62;
  &#60;br&#62;
Sat, Feb 20, 2010&#60;br&#62;
Test Dada v3.04&#60;br&#62;
Message size: 184kb, html and text, same msg as above test on Dada v4.03&#60;br&#62;
1084 of 28624 messages &#60;font color=&#34;#ff0000&#34;&#62;&#60;b&#62;COMPILED&#60;/b&#62;&#60;/font&#62;
in: 6 minutes, 34 seconds&#60;br&#62;
Average Sending Rate: 9,905 messages/hour&#60;br&#62;
165.13 msgs/minute&#60;br&#62;
  &#60;br&#62;
-----------------------------&#60;br&#62;
  &#60;br&#62;
I've reinstalled 2.10.16 to test that again, but I don't want to
actually send a message so I inserted this code in the config.pm and
got a 500 error. &#60;br&#62;
&#38;nbsp;&#38;nbsp;&#38;nbsp; $MASS_MAIL_SETTINGS = &#34;|$MAILPROG -t&#34;;&#60;br&#62;
&#38;nbsp;&#38;nbsp;&#38;nbsp; $MASS_MAIL_SETTINGS = &#34;&#38;gt;&#38;gt;$LOGS/test_mail.txt&#34;;&#60;br&#62;
  &#60;br&#62;
Is there another way to test the earlier version without actually
sending the messages?&#38;nbsp; &#60;br&#62;
(code, place to install it?)&#60;/blockquote&#62;
&#60;br&#62;
&#60;div class=&#34;moz-signature&#34;&#62;&#60;br&#62;

&#60;title&#62;&#60;/title&#62;
&#60;span style=&#34;color: rgb(0, 0, 0);&#34;&#62;-------------------------------------------------&#60;/span&#62;&#60;br style=&#34;color: rgb(0, 0, 0);&#34;&#62;
&#60;span style=&#34;color: rgb(0, 0, 0);&#34;&#62;
John Collins&#60;/span&#62;&#60;br style=&#34;color: rgb(0, 0, 0);&#34;&#62;
&#60;span style=&#34;color: rgb(0, 0, 0);&#34;&#62;
Meetings and Mixers&#60;/span&#62;&#60;br style=&#34;color: rgb(0, 0, 0);&#34;&#62;
&#60;span style=&#34;color: rgb(0, 0, 0);&#34;&#62;
Box 80461&#60;/span&#62;&#60;br style=&#34;color: rgb(0, 0, 0);&#34;&#62;
&#60;span style=&#34;color: rgb(0, 0, 0);&#34;&#62;
Rancho Santa Margarita, CA 92688&#60;/span&#62;&#60;br style=&#34;color: rgb(0, 0, 0);&#34;&#62;
&#60;span style=&#34;color: rgb(0, 0, 0);&#34;&#62;
c949 689 7070&#60;/span&#62;&#60;br style=&#34;color: rgb(0, 0, 0);&#34;&#62;
&#60;span style=&#34;color: rgb(0, 0, 0);&#34;&#62;
&#60;a class=&#34;moz-txt-link-abbreviated&#34; href=&#34;mailto:j&#60;a href=&#34;http://mailhide.recaptcha.net/d?c=CYcwsTGgmYzeIwpYyfY4yUDiKSNVF8FZ1jCnKrhuBUs%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#34; onclick=&#34;window.open(&#38;#39;http://mailhide.recaptcha.net/d?c=CYcwsTGgmYzeIwpYyfY4yUDiKSNVF8FZ1jCnKrhuBUs%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#38;#39;, &#38;#39;&#38;#39;, &#38;#39;height=300,location=0,menubar=0,resizable=0,scrollbars=0,statusbar=0,toolbar=0,width=500&#38;#39;); return false;&#34; title=&#34;Reveal this e-mail address&#34;&#62;...&#60;/a&#62;@meetingsandmixers.com&#34;&#62;j&#60;a href=&#34;http://mailhide.recaptcha.net/d?c=CYcwsTGgmYzeIwpYyfY4yUDiKSNVF8FZ1jCnKrhuBUs%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#34; onclick=&#34;window.open(&#38;#39;http://mailhide.recaptcha.net/d?c=CYcwsTGgmYzeIwpYyfY4yUDiKSNVF8FZ1jCnKrhuBUs%3d&#38;amp;k=01cKpUskr7LYtD0pzTwgmICg%3d%3d&#38;#39;, &#38;#39;&#38;#39;, &#38;#39;height=300,location=0,menubar=0,resizable=0,scrollbars=0,statusbar=0,toolbar=0,width=500&#38;#39;); return false;&#34; title=&#34;Reveal this e-mail address&#34;&#62;...&#60;/a&#62;@meetingsandmixers.com&#60;/a&#62;&#60;/span&#62;&#60;br style=&#34;color: rgb(0, 0, 0);&#34;&#62;
&#60;span style=&#34;color: rgb(0, 0, 0);&#34;&#62;
&#60;a class=&#34;moz-txt-link-freetext&#34; href=&#34;http://www.meetingsandmixers.com/&#34;&#62;http://www.meetingsandmixers.com/&#60;/a&#62;&#60;/span&#62;&#60;br style=&#34;color: rgb(0, 0, 0);&#34;&#62;
&#60;br style=&#34;color: rgb(0, 0, 0);&#34;&#62;
&#60;/div&#62;






&lt;!-- begin subscription_form_widget.tmpl --&gt; 



 

    &lt;form action=&quot;http://dadamailproject.com/cgi-bin/dada/mail.cgi&quot; method=&quot;post&quot;&gt;

 

&lt;fieldset&gt;
&lt;legend&gt;
 Subscribe/Unsubscribe  on Dada Mail Developers
&lt;/legend&gt;

 
    

    &lt;input type=&quot;hidden&quot; name=&quot;list&quot; value=&quot;dadadev&quot; /&gt;


&lt;p&gt;
&lt;label for=&quot;email&quot; style=&quot;width: 7em;float: left;text-align: right;margin-right: 0.5em;display: block&quot; &gt;
Email&amp;nbsp;Address: 
&lt;/label&gt;
 
	&lt;input type=&quot;text&quot; name=&quot;email&quot; id=&quot;email&quot; value=&quot;&quot; /&gt; &lt;span class=&quot;error&quot;&gt;* Required&lt;/span&gt;
 

&lt;/p&gt;

 

	 

 


&lt;hr style=&quot;border-top: 1px solid black;&quot; /&gt; 

 
    &lt;p&gt;
    &lt;label for=&quot;f_s&quot; style=&quot;width: 7em;float: left;text-align: right;margin-right: 0.5em;display: block&quot;&gt;
    Subscribe
    &lt;/label&gt;
    &lt;input type=&quot;radio&quot; name=&quot;f&quot; id=&quot;f_s&quot; value=&quot;subscribe&quot; checked=&quot;checked&quot; /&gt;
    &lt;/p&gt; 
    
    &lt;p&gt; 
    &lt;label for=&quot;f_u&quot; style=&quot;width: 7em;float: left;text-align: right;margin-right: 0.5em;display: block&quot;&gt;Unsubscribe&lt;/label&gt; 
    &lt;input type=&quot;radio&quot; name=&quot;f&quot;  id=&quot;f_u&quot;  value=&quot;unsubscribe&quot;  /&gt;
    &lt;/p&gt;   

 

&lt;hr style=&quot;border-top: 1px solid black;&quot; /&gt; 

&lt;p style=&quot;text-align:right;display:block&quot;&gt;
&lt;input type=&quot;submit&quot; value=&quot;Submit Your Information&quot; class=&quot;processing&quot; /&gt;
&lt;/p&gt; 


 




&lt;/fieldset&gt;
&lt;/form&gt; 



  
&lt;!-- end subscription_form_widget.tmpl --&gt; 
</description>
		 <pubDate>Sat, 20 Feb 2010 20:21:00 GMT</pubDate>
		 <guid>http://dadamailproject.com/cgi-bin/dada/mail.cgi/archive/dadadev/20100220152100/</guid>
		</item>

	
	 
		<item>
		 <title>[dadadev] Re: Slowdowns again</title>
		 <link>http://dadamailproject.com/cgi-bin/dada/mail.cgi/archive/dadadev/20100220150503/</link>
		 <description>
&#60;p&#62;On Feb 20, 2010, at 12:37 PM, John Collins wrote:
&#60;span class=&#34;quoted_reply&#34;&#62;&#38;gt; However, I do have experience with using different languages in php (not the actual languages, but the mechanics) and it is really pretty simple, but again I don't know how to translate it into perl.&#60;/span&#62;
&#60;/p&#62;&#60;p&#62;You missed the whole spiel I did on getting something similar to this into Dada Mail? 
&#60;/p&#62;&#60;p&#62;        &#60;a href=&#34;http://dadamailproject.com/cgi-bin/dada/mail.cgi/archive/dadadev/20100207012503/&#34;&#62;http://dadamailproject.com/cgi-bin/dada/mail.cgi/archive/dadadev/20100207012503/&#60;/a&#62;
&#60;/p&#62;&#60;p&#62;What I'm putting into Dada Mail will kick the system you described to the curb.  To the curb! :)
&#60;/p&#62;&#60;p&#62;&#38;gt; Adding new language files would be as easy as getting the translations.
&#60;/p&#62;&#60;p&#62;Yup, read my thingy - they system I'm using has this too -  except in my system, those files can be auto-updated, so when the program gets upgraded, so can the language files. If something is missing, the program doesn't break, either. 
&#60;/p&#62;&#60;p&#62;What I wrote gets technical, but to people who are doing the translation, it's just file they need to read and translate. 
&#60;/p&#62;&#60;p&#62;I'm currently working to get the program in shape, John, to make this happen, but it def. doesn't happen over night. The first step is to actually get Dada Mail to work with different character sets, since it doesn't, right now. The next step is to normalize some of the text in the program - and shorten it too, so translation is easier. After that, I have to make all the text that needs to be translated and then, I have to do a translation myself, to show how its done (and to make sure it works). A lot of work. 
&#60;/p&#62;&#60;p&#62;&#38;gt; Another way would be to use a database to store the various translations and query it for the translation terms.  I've not done it this way, but just thinking about it, I think I would prefer it.
&#60;/p&#62;&#60;p&#62;The system I'm putting in place supports this too, if someone is to be so bold. I don't think I'll be shipping Dada Mail with the translations like that, though. 
&#60;/p&#62;
&lt;!-- begin subscription_form_widget.tmpl --&gt; 



 

    &lt;form action=&quot;http://dadamailproject.com/cgi-bin/dada/mail.cgi&quot; method=&quot;post&quot;&gt;

 

&lt;fieldset&gt;
&lt;legend&gt;
 Subscribe/Unsubscribe  on Dada Mail Developers
&lt;/legend&gt;

 
    

    &lt;input type=&quot;hidden&quot; name=&quot;list&quot; value=&quot;dadadev&quot; /&gt;


&lt;p&gt;
&lt;label for=&quot;email&quot; style=&quot;width: 7em;float: left;text-align: right;margin-right: 0.5em;display: block&quot; &gt;
Email&amp;nbsp;Address: 
&lt;/label&gt;
 
	&lt;input type=&quot;text&quot; name=&quot;email&quot; id=&quot;email&quot; value=&quot;&quot; /&gt; &lt;span class=&quot;error&quot;&gt;* Required&lt;/span&gt;
 

&lt;/p&gt;

 

	 

 


&lt;hr style=&quot;border-top: 1px solid black;&quot; /&gt; 

 
    &lt;p&gt;
    &lt;label for=&quot;f_s&quot; style=&quot;width: 7em;float: left;text-align: right;margin-right: 0.5em;display: block&quot;&gt;
    Subscribe
    &lt;/label&gt;
    &lt;input type=&quot;radio&quot; name=&quot;f&quot; id=&quot;f_s&quot; value=&quot;subscribe&quot; checked=&quot;checked&quot; /&gt;
    &lt;/p&gt; 
    
    &lt;p&gt; 
    &lt;label for=&quot;f_u&quot; style=&quot;width: 7em;float: left;text-align: right;margin-right: 0.5em;display: block&quot;&gt;Unsubscribe&lt;/label&gt; 
    &lt;input type=&quot;radio&quot; name=&quot;f&quot;  id=&quot;f_u&quot;  value=&quot;unsubscribe&quot;  /&gt;
    &lt;/p&gt;   

 

&lt;hr style=&quot;border-top: 1px solid black;&quot; /&gt; 

&lt;p style=&quot;text-align:right;display:block&quot;&gt;
&lt;input type=&quot;submit&quot; value=&quot;Submit Your Information&quot; class=&quot;processing&quot; /&gt;
&lt;/p&gt; 


 




&lt;/fieldset&gt;
&lt;/form&gt; 



  
&lt;!-- end subscription_form_widget.tmpl --&gt; 
</description>
		 <pubDate>Sat, 20 Feb 2010 20:05:00 GMT</pubDate>
		 <guid>http://dadamailproject.com/cgi-bin/dada/mail.cgi/archive/dadadev/20100220150503/</guid>
		</item>

	

 </channel>
</rss>

