MUSTDOS

MUSTDOS

I was following this for sending Gmails from Phoenix whenever someone registers an account.

I modified my user controller to this

def create(conn, %{"_action" => "registered" , "user" => user_params} = params) do 
  Swoosh.Email.new() 
  |> Swoosh.Email.to({nil ,user_params["email"]}) 
  |> Swoosh.Email.from({"outsider", "outsideemail@home.here"}) 
  |> Swoosh.Email.subject("FINALLY!") 
  |> Swoosh.Email.html_body("<h1>FINALLY!</h1>") 
  |> Swoosh.Email.text_body("FINALLY!\n") 
  |> Pento.Mailer.deliver() 

  create(conn, params, "Account created successfully!") 
end

And my config/runtime.exs (for I got a warning from console that it’s better to place it there than config/config.exs)

config :pento, Pento.Mailer, 
  adapter: Swoosh.Adapters.Gmail, 
  access_token: {:system, "gmail-api-access-token-from-playground"}

I don’t get an email but I get this error

from console

[error] GenServer #PID<0.658.0> terminating
** (stop) :econnaborted
Last message: {:tcp_error, #Port<0.22>, :econnaborted}
State: {%ThousandIsland.Socket{socket: #Port<0.22>, transport_module: ThousandIsland.Transports.TCP, read_timeout: 60000, silent_terminate_on_error: false, span: %ThousandIsland.Telemetry{span_name: :connection, telemetry_span_context: #Reference<0.2682427495.2491154433.212811>, start_time: -8253868621053248, start_metadata: %{handler: Bandit.DelegatingHandler, remote_port: 55554, remote_address: {127, 0, 0, 1}, telemetry_span_context: #Reference<0.2682427495.2491154433.212811>, parent_telemetry_span_context: #Reference<0.2682427495.2491154435.210270>}}}, %{opts: %{http: [ ], websocket: `[ ]`, http_1: [ ], http_2: [ ]}, plug: {Phoenix.Endpoint.SyncCodeReloadPlug, {PentoWeb.Endpoint, [ ]}}, handler_module: Bandit.HTTP1.Handler, http_1_enabled: true, http_2_enabled: true, requests_processed: 40}}

Showing Posts 1 to 6

jswanner

jswanner

This is equivalent to System.get_env("gmail-api-access-token-from-playground"), do you have an environment variable by that name?

LostKobrakai

LostKobrakai

Generally system tuples are a thing of the past though.

You’d much rather use `System.get_env` calls directly in runtime.exs nowadays.

MUSTDOS

MUSTDOS OP

The "gmail-api-access-token-from-playground"

is taken from here in step 2 OAuth 2.0 Playground after clicking “Exchange authorization code for tokens“

jswanner

jswanner

I think what you want is:

access_token: "gmail-api-access-token-from-playground"

Next step is to create a environment variable and then use it:

GMAIL_API_ACCESS_TOKEN=gmail-api-access-token-from-playground
access_token: System.get_env("GMAIL_API_ACCESS_TOKEN")
MUSTDOS

MUSTDOS OP

I had to lower case gmail_api_access_token to get it to save rather than raising an invalid match and it still doesn’t deliver

jswanner

jswanner

Environment variables are set in your shell (or whatever is starting elixir). It’s more of a deployment/security concern, if you are just getting started you can hard code the API key, just don’t push the code to a public repository

— All posts loaded —

Where Next? Top

Trending in Questions Top

RSP87
I’m working on a project that simulates the bumbl example in the programming phoenix book. It acts almost like an email client. We have a...
New
RemyXRenard
I’m seeing that a list inside a Kino.DataTable will be interpreted as a charlist, even if the Kino.configure() is set to charlists: :as_l...
New
nseaSeb
Hello, I know there is an approach for handling lists that allows for optimized traversal, but I can’t recall the specific method (somet...
New
velrest
So my question is quite simple and i have found no conclusive answer on forum, google or AI. Should we use :erlang.float for Integer to ...
New
samoloth
Hi, I’ve just set up an application with ash_authentication. There is only magic link strategy for now, so there is no confirmation add o...
New
FlyingNoodle
If a change or preparation module uses Ash.Changeset.get_argument/2 or Ash.Query.get_argument/2 (or any of the other get_argument functio...
New
ryanwinchester
apply_graft/2 doesn’t rewrite an add_many sub-workflow’s deps on an add step. Grafted jobs cancel with “upstream job was deleted” Version...
New

Other Trending Topics Top

mudasobwa
I am happy to introduce the very α version of the new programming language compiled to BEAM. Welcome Cure. It has literally three kille...
New
marciok
Hi there! We created Gust: A task orchestrator inspired by Airflow. For those who have never heard about Aiflow, it’s a Python-based wor...
New
jimsynz
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Dmk
Xamal is a deployment tool for Elixir apps that deploys native releases to bare metal servers over SSH. It’s a port of GitHub - basecamp/...
New
Damirados
Hello everyone. After busy few months I am happy to announce v0.1.0 of Emerge &amp; Solve. They are GUI (Emerge) and State management (S...
New
netoum
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New

We're in Beta

About us Mission Statement

Options

Thread Display Mode




Thread Preview

Skip Thread Previews