Thread Tools Display Modes
01-31-19, 09:35 PM   #1
JDoubleU00
A Firelord
 
JDoubleU00's Avatar
AddOn Author - Click to view addons
Join Date: Mar 2008
Posts: 463
Mail Automation

Is there a mail addon that can do smart mailing similar to what TSM does? In other words, I want to send all leather working materials to my character that has the LW skill. I've not found anything outside of TSM that will do this, but I like being proved wrong in situations like this.

Thanks,
__________________
Author of JWExpBar and JWRepBar.
  Reply With Quote
02-01-19, 03:58 PM   #2
Rilgamon
Premium Member
 
Rilgamon's Avatar
Premium Member
AddOn Author - Click to view addons
Join Date: Sep 2009
Posts: 822
I've startet such an addon (zz_Altmail). But I dont have the time to work on it properly.
You would have to download it from my repo at https://wow.grml.de/
And configuration is done in core.lua

There is sendouttable which is a per realm and item category/subcategory list. ('order' and 'skip' are not yet implemented )

Lua Code:
  1. local sendouttable = {
  2.     ['Durotan'] = {
  3.         ['Trade Goods'] = {
  4.             ['Enchanting'] = {
  5.                 ['Rilgana-Tirion'] = {
  6.                     ['order'] = 1,
  7.                     ['skip'] = {},
  8.                 },
  9.             },
  10.             ['Metal & Stone'] = {
  11.                 ['Rilgany-Tirion'] = {
  12.                     ['order'] = 1,
  13.                     ['skip'] = {},
  14.                 },
  15.             },
  16.             ['Herb'] = {
  17.                 ['Rilgana-Tirion'] = {
  18.                     ['order'] = 1,
  19.                     ['skip'] = {},
  20.                 },
  21.             }
  22.         }
  23.     }
  24. }
__________________
The cataclysm broke the world ... and the pandas could not fix it!
  Reply With Quote
02-01-19, 06:45 PM   #3
JDoubleU00
A Firelord
 
JDoubleU00's Avatar
AddOn Author - Click to view addons
Join Date: Mar 2008
Posts: 463
Originally Posted by Rilgamon View Post
I've startet such an addon (zz_Altmail). But I dont have the time to work on it properly.
You would have to download it from my repo at https://wow.grml.de/
And configuration is done in core.lua

There is sendouttable which is a per realm and item category/subcategory list. ('order' and 'skip' are not yet implemented )

Lua Code:
  1. local sendouttable = {
  2.     ['Durotan'] = {
  3.         ['Trade Goods'] = {
  4.             ['Enchanting'] = {
  5.                 ['Rilgana-Tirion'] = {
  6.                     ['order'] = 1,
  7.                     ['skip'] = {},
  8.                 },
  9.             },
  10.             ['Metal & Stone'] = {
  11.                 ['Rilgany-Tirion'] = {
  12.                     ['order'] = 1,
  13.                     ['skip'] = {},
  14.                 },
  15.             },
  16.             ['Herb'] = {
  17.                 ['Rilgana-Tirion'] = {
  18.                     ['order'] = 1,
  19.                     ['skip'] = {},
  20.                 },
  21.             }
  22.         }
  23.     }
  24. }
Thanks! I'll look into it.
__________________
Author of JWExpBar and JWRepBar.
  Reply With Quote
06-26-19, 01:56 AM   #4
Barleduq
Premium Member
 
Barleduq's Avatar
Premium Member
Join Date: Jan 2012
Posts: 135
I realize I'm resurrecting a thread...

But have you looked at Mail Commander? I haven't looked for it here, I found it on curse. I haven't played with it much, but it might do what you want.

-Barleduq
  Reply With Quote
06-26-19, 10:00 AM   #5
JDoubleU00
A Firelord
 
JDoubleU00's Avatar
AddOn Author - Click to view addons
Join Date: Mar 2008
Posts: 463
Originally Posted by Barleduq View Post
But have you looked at Mail Commander? I haven't looked for it here, I found it on curse. I haven't played with it much, but it might do what you want.

-Barleduq
I haven't had the time to properly look at the code, but Mail Commander has promise. I'm still planing on figuring out the code for my own learning.

Thanks!
__________________
Author of JWExpBar and JWRepBar.
  Reply With Quote

WoWInterface » AddOns, Compilations, Macros » AddOn Search/Requests » Mail Automation

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off