This forum uses cookies
This forum makes use of cookies to store your login information if you are registered, and your last visit if you are not. Cookies are small text documents stored on your computer; the cookies set by this forum can only be used on this website and pose no security risk. Cookies on this forum also track the specific topics you have read and when you last read them. Please confirm that you accept these cookies being set.

email setting
#13
Hi all,

Can you help me to find the mistake in my script ?

Thanks 

function Email(to, subject, message)
  -- make sure these settings are correct
 
  ---------------BEGINNING OF USER EDITABLE AREA-------------------
  local settings = {
    -- "from" field, only e-mail must be specified here
    from = 'bouvet.clementine@gmail.com',
    -- smtp username
    user = 'bouvet.clementine@gmail.com',
    -- smtp password
    password = 'xxxxx',
    -- smtp server
    server = 'smtp.gmail.com',
    -- smtp server port
    port = 465,
    -- enable ssl, required for gmail smtp
    secure = 'sslv23',
  }
  -------------------END OF USER EDITABLE AREA---------------------

  local smtp = require('socket.smtp')
  local escape = function(v)
    return '<' .. tostring(v) .. '>'
  end

  -- message headers and body
  settings.source = smtp.message({
    headers = {
      to = escape(to),
      subject = subject,
    },
    body = message
  })

  -- fixup from field
  settings.from = escape(settings.from)
  settings.rcpt = { escape(to) }

  return smtp.send(settings)
end
Reply


Messages In This Thread
email setting - by gkentsis - 10.10.2017, 12:00
RE: email setting - by admin - 10.10.2017, 12:24
RE: email setting - by gkentsis - 10.10.2017, 19:16
RE: email setting - by admin - 11.10.2017, 07:59
RE: email setting - by gkentsis - 11.10.2017, 08:51
RE: email setting - by admin - 11.10.2017, 10:27
RE: email setting - by gkentsis - 13.10.2017, 08:12
RE: email setting - by admin - 13.10.2017, 08:45
RE: email setting - by gkentsis - 13.10.2017, 09:06
RE: email setting - by admin - 13.10.2017, 10:02
RE: email setting - by Mrinj - 17.11.2017, 18:43
RE: email setting - by Mrinj - 18.11.2017, 11:45
RE: email setting - by Clémentine - 21.11.2017, 14:36
RE: email setting - by admin - 22.11.2017, 13:00
RE: email setting - by joaodaniel.pereira - 27.03.2024, 09:27
RE: email setting - by admin - 27.03.2024, 09:29
RE: email setting - by joaodaniel.pereira - 27.03.2024, 09:47
RE: email setting - by Supersoon - 09.05.2024, 10:34
RE: email setting - by Daniel - 27.03.2024, 09:50
RE: email setting - by admin - 09.05.2024, 10:36
RE: email setting - by Supersoon - 09.05.2024, 10:51
RE: email setting - by admin - 09.05.2024, 10:55

Forum Jump: