Jump to content

Email


Leo Messi

Recommended Posts

So okay, I've got an email script from the MTA SA community which lets you able to send an email by using a specified GUI ingame and u put the email that you want to send to, like [email protected]

Well, so seems like the PHP link has expired, has anyone another link?

local randomMails = {"[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]"}
function fromRandom()
    return randomMails[math.random(#randomMails)]
end

function sendCustomMail(subject, header, sendto, mail)
    local header = "From: "..subject.." <"..(header or fromRandom())..">"
    callRemote("http://mta.skcit.tk/emailer.php", returns, subject, header, sendto, mail) -- This website is not available any more so add the PHP files in your own website and put URL here.
end
addEvent("sendEMail", true)
addEventHandler("sendEMail", root, sendCustomMail)

function returns(msg, num)
    if msg == "ERROR" or (not msg) then
        outputDebugString("E-Mail not sent due to webpage errors, check the script and/or page provided.", 2)
    else
        outputDebugString(msg, num or 3)
    end
end

 

Link to comment

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...