Jump to content

Issue receiving incoming email from outside SL


Bones Outlander
 Share

You are about to reply to a thread that has been inactive for 587 days.

Please take a moment to consider if this thread is worth bumping.

Recommended Posts

Hi,

I am trying to test sending an email to a script in SL, but the emails I send are never received.

I have checked the key I'm sending to and it is correct and have tried for 2 different regions.

Is anybody else seeing issues receiving external emails, internal emails seem to be working fine.

Here's my test script, which is the example script for llGetNextEmail, so it should work.

default
{
    state_entry()
    {
        llOwnerSay("My email address is: " + (string)llGetKey() + "@lsl.secondlife.com");
        llSetTimerEvent(15.0);
    }
 
    timer()
    {
        llOwnerSay("Checking for mail");
        //Check for emails
        llGetNextEmail("", "");
    }
 
    email(string time, string address, string subj, string message, integer num_left)
    {
          llOwnerSay("I got an email: " + subj + "\n" + message);
     }
}

 

Edited by Bones Outlander
Link to comment
Share on other sites

Thanks Qie,

You are correct it works from the Gmail web client/account, I only tested was using a Gmail account sending via the Windows 10 mail client and also from an outlook.com account.

 

EDIT: The formats below don't seem to work on Outlook at all now, so not sure what's going on!

So it seems Microsoft doesn't like the address

00e432f6-fa97-5889-90c5-a3b7c2b3895a@lsl.secondlife.com

So I tested this address from a Microsoft account/email client and this DOES work.

Email Tester <00e432f6-fa97-5889-90c5-a3b7c2b3895a@lsl.secondlife.com>

But this DOES NOT work

<00e432f6-fa97-5889-90c5-a3b7c2b3895a@lsl.secondlife.com>

So it seems to be safe, use an address that has the format Name <key@lsl.secondlife.com>  format as this worked with Gmail and Microsoft accounts/clients.

Edited by Bones Outlander
Link to comment
Share on other sites

Hmm, I take it all back!

I can't send from Outlook again, even using the format above but if I reply to an email the script sends me in Outlook it goes through, go figure!

Does anybody  use outlook to send emails into SL successfully?

Edited by Bones Outlander
Link to comment
Share on other sites

You are about to reply to a thread that has been inactive for 587 days.

Please take a moment to consider if this thread is worth bumping.

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
 Share

×
×
  • Create New...