Thanks for signing up. Get started by logging in:
<%= link_to "Login Now", @login_url, class: "button" %> ``` **Text Template:** ```erb <%# app/views/notification_mailer/welcome_email.text.erb %> Welcome, <%= @user.name %>! Thanks for signing up. Get started by logging in: <%= @login_url %> ``` **Usage (Async with SolidQueue):** ```ruby # In controller or service NotificationMailer.welcome_email(@user).deliver_later NotificationMailer.password_reset(@user).deliver_later(queue: :mailers) ``` **Why:** ActionMailer integrates seamlessly with SolidQueue for async delivery. Always use deliver_later to avoid blocking requests. Provide both HTML and text versions for compatibility.