Thread Tools Display Modes
05/12/15, 09:37 AM   #1
JohnnyKing94
 
JohnnyKing94's Avatar
Join Date: Mar 2015
Posts: 45
SendMail problem

Someone is having problem with the SendMail function? I'm unable to send any kind of emails...
  Reply With Quote
05/12/15, 11:37 AM   #2
Randactyl
AddOn Author - Click to view addons
Join Date: Apr 2014
Posts: 251
I think I understand what you're asking. You need to first use RequestOpenMailbox() then make your calls to SendMail(...). After you finish mailing you should call CloseMailbox().

Also note if you're sending multiple mails, you will likely need to include an escalating delay in between each sent. Something like:

Lua Code:
  1. local delay = 0
  2. while(stuff) do
  3.     zo_callLater(function() SendMail(...) end, delay)
  4.     delay = delay + 200
  5. end
  Reply With Quote

ESOUI » AddOns » AddOn Help/Support » SendMail problem


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