Salsa Scoop

Night time is the right time [for a webinar]

Catch us breaking out of our 9-to-5 box today and tomorrow with evening sessions of our introductory webinars -- great for volunteers who have other jobs and west coasters.

Wednesday, Mar. 25: List Management, 7 p.m. Eastern.
Thursday, Mar. 26: Email Basics, 7 p.m. Eastern.

Should we do more of these? Should we find even later hours? Drop us a line, or talk it over on Salsa Commons.

 

Read more...

09:10 AM Mar 25, 2009 - 52 comments permalink


Have a new staff member using Salsa? Hand them this!

Have any new staff, volunteers or interns using Salsa? Make sure they sign up to attend our new user orientation (see the events page for upcoming webinars). If they can't attend, teel free to pass along the 8 page New User Orientation Powerpoint (pdf) from the presentation.

 

Read more...

12:00 AM Mar 23, 2009 - 1 comments permalink


Short notice: learn the DSCC's e-mail secrets at Third Thursday Mar. 19

This is the sort of thing to make me wish I still lived in D.C.

The monthly "Third Thursday" event, which takes place tomorrow from 3 to 5 p.m. at the home office on 1700 Connecticut, is a two-parter that should be well worth the red line transfer for anyone local.

  • 3-4 p.m.: The new e-mail package.  A demo of the features in the new email tool we rolled out last week.
  • 4-5 p.m.: E-mail strategy with Lizzie Kendrick of the DSCC.  Perhaps nobody has sent more emails with Salsa than Lizzie ... and she'll share the whys and the hows of conditional blast content, A/B testing, and other advanced mail testing and targeting.

Should be a great combination useful across the spectrum of list sizes, Salsa experience, and technical expertise.

RSVP.  Your conversion rates will thank you for it.

 

Read more...

09:55 AM Mar 18, 2009 - 142 comments permalink


Get your new e-mail tool ... and take the webinar today

Salsa's campaign managers should have received the notification, but we pushed out an upgraded e-mail package last week.  Though the old e-mail tool will remain supported until June, the new tool is all that and a bag of chips right now.

Here's how to add the package:

  • Click on "Accounts" in the upper right hand corner of your dashboard
  • Then, click "Manage Your Packages" in the bottom right-hand box
  • "Click here to add the new Email Blast Package"

That's it! Once you've installed it, you can begin e-mailing with it immediately, and you'll find all the great options you're used to, plus some brand new functionality.

Not sure?  Want to test the waters?  Documentation for the new e-mail package is already available. We'll also be offering webinars to help orient everyone this afternoon at 2 p.m. and on Monday, March 30. (All future e-mail webinars will use the new package.)

 

Read more...

10:44 AM Mar 16, 2009 - 8 comments permalink


Customizing a donation page with summed totals

This is a question we get a lot:  how can I customize a donation page to behave in a storefront-like fashion -- choosing multiple gift types that result in a single automatically calculated sum?

Mike Heavers of Maverick Digital came up with a nifty solution you can see in action on this donation page.

It's just a bit of script in the page's Custom Donation HTML field, and can easily be tweaked for your own page.

<script language="JavaScript"><!--
function getTotal() {
      document.donation_data.amount.value = parseInt(document.donation_data.memberdues.value) + parseInt(document.donation_data.regamount.value);

    document.donation_data.VARCHAR0.value = document.donation_data.RADIO0.value;
    document.donation_data.VARCHAR1.value = document.donation_data.memberdues.value;
    document.donation_data.VARCHAR2.value = document.donation_data.regamount.value;

}



//--></script>

<br/>

<div class="formRow">

<label for="fc4">Join or renew your membership here: </label>

<select id="fc4" class="blockInput" name="memberdues" onchange="getTotal()">
<option value="0">I do not need to renew my membership</option>
<option value="50">Voting & Assoc Members- Budget under $1m: $50 dues</option>
<option value="100">Voting & Assoc Members- Budget over $1m: $100 dues</option>
<option value="20">Individuals: $20 dues</option>
<option value="10">Students & Seniors: $10 dues</option>
</select>

</div>



<div class="formRow">
<label for="fc34">Registration Fee <span class="required">*</span>: </label>


<select id="fc34" class="blockInput" name="regamount" onchange="getTotal()">
<option selected="">SELECT ONE:</option>
<option value="150">MEMBER-Early Bird Registration Package Only (before 4/17): $150</option>
<option value="225">MEMBER-Early Bird Registration Package w / Gala Ticket (before 4/17): $225</option>
<option value="250">MEMBER-Regular Convention Registration Package Only: $250</option>
<option value="325">MEMBER-Regular Convention Registration Package w/Gala Ticket: $325</option>
<option value="250">NONMEMBER – Early Bird Registration Package ONLY (before 4/17): $250</option>
<option value="450">NONMEMBER – Early Bird Registration Package w/Gala Ticket (before 4/17): $450</option>
<option value="350">NONMEMBER – Regular Convention Registration Package ONLY: $350</option>
<option value="550">NONMEMBER – Regular Convention Registration Package w/Gala Ticket: $550</option>
<option value="200">Gala Only Ticket - $200</option>
</select>
</div>
<br/>

<div class="formRow">
<label for="amount">Total Amount: </label>
<input type="text" name="amount" readonly="readonly">
</div>



<input type="hidden" name="VARCHAR0" >
<input type="hidden" name="VARCHAR1" >
<input type="hidden" name="VARCHAR2" >

<input type="hidden" value="Email,RADIO0,First_Name,Last_Name,Street,City,State,Zip,regamount,amount" name="required"/>

 

Read more...

12:42 PM Mar 13, 2009 - 10 comments permalink


Page: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190