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}}
Trending in Questions
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
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
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
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
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
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
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
I am happy to introduce the very α version of the new programming language compiled to BEAM.
Welcome Cure.
It has literally three kille...
New
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
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
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
Hello everyone. After busy few months I am happy to announce v0.1.0 of Emerge & Solve.
They are GUI (Emerge) and State management (S...
New
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #library
- #deployment
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #podcasts
- #javascript
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #ai
- #elixirconf-us
- #blog-post
- #elixir-ls
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #hex
- #security
- #metaprogramming










Showing Posts 1 to 6- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
jswanner
This is equivalent to
System.get_env("gmail-api-access-token-from-playground"), do you have an environment variable by that name?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
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
I think what you want is:
Next step is to create a environment variable and then use it:
MUSTDOS
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
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