Archive

Posts Tagged ‘outlook plugin’

Outlook Plugin

June 19th, 2011 Comments off

I need an Outlook plugin that needs to be integrated into commitCRM.

It needs to intergrate into commitCRM see the manual here

http://commitcrm.com/wiki/API_Code_Samples

Sending a new message:

When tracking the item you shall be able to add it to a ticket, Sales Opportunities, or just to a contactperson.

Outlook Plugin

June 8th, 2011 Comments off

I need an Outlook plugin that needs to be integrated into commitCRM.

It needs to intergrate into commitCRM see the manual here

http://commitcrm.com/wiki/API_Code_Samples

Sending a new message:

When tracking the item you shall be able to add it to a ticket, Sales Opportunities, or just to a contactperson.

The work needs to be done within 3-4 days.

Microsoft Outlook Plugin Tweak

July 1st, 2009 Comments off

OK, I already have a plugin that rotates quotes in in and out of my messages. ONE problem… I want the messages to go in order, instead of random.. so start at the top.. and go to the bottom. I will paste the code below…. It will likely only take a small tweak so instead of generating a random quote it does down the list one at a time…

Ready to get started on this one ASAP… I need it immediately.

# This extension provides “random” rotating text through a new
# template element named &rotating_text; Please look at the
# “Rotating text.” Quote Template for a demonstration.

proc etx_rotating_text {args} {
set items {
{
“I have never let my schooling interfere with my
education.” – Mark Twain
}
{
“Beware of the man of one book.” – Thomas Aquinas
}
{
“Common sense is not so common.” – Voltaire
}
{
“Only two things are infinite, the universe and human stupidity,
and I’m not sure about the former.” – Albert Einstein
}
{
“It is not only fine feathers that make fine birds.” – Aesop
}
{
“Dignity does not consist on possessing honors, but in
deserving them.” – Aristotle
}
{
“No opinion, however absurd or incredible, can be imagined,
which has not been maintained by someone of the philosophers.” -
- Rene Descartes
}
{
“Do not be in a hurry to tie what you cannot untie.” – English Proverb
}
{
“If money is your hope for independence you will never have
it. The only real security that a man will have in this world
is a reserve of knowledge, experience, and ability.” – Henry Ford
}
{
“Injustice anywhere is a threat to justice everywhere.” -
- Martin Luther King
}
{
“Hatred is the coward’s revenge for being intimidated. ” –
- George Bernard Shaw
}
{
“Good taste is the enemy of creativity.” – Pablo Picasso
}
{
“Don’t go around saying the world owes you a living. The
world owes you nothing. It was here first.” – Mark Twain
}
{
“Once you have missed the first buttonhole you’ll never
manage to button up.” – Goethe
}
}
set count [llength $items]
set pseudo_random [expr [clock seconds] % $count]
return [lindex $items]
}

Small Outlook Plugin

March 16th, 2009 No comments

PLugin must be 2003 compliant for outlook.
Plugin must not interefere with Xobni or Email Templates plugin.

Description: Incoming emails must shot whether the email is coming form someone who is already in the database. It can do this by color code or by showing somewhere WHAT CATEGORY the person is.

Future and bonus: Things I want but don’t need yet.

To click and get a drop down to change the category.
If not in database I want to be able to click to add them and easilly add their cateogry without going to a different page.

Bear