-
| Hi, i'm planning to use actix-web for my project and i want to send emails to individuals. Is actix-web has any smtp client or is compatible to any other rust email client? | 
Beta Was this translation helpful? Give feedback.
      
      
          Answered by
          
            robjtede
          
      
      
        Sep 27, 2023 
      
    
    Replies: 1 comment
-
| Any SMTP client you can find on crates.io will work. If it's pool-based, then you will be able construct the client/pool once and put it in app data. | 
Beta Was this translation helpful? Give feedback.
                  
                    0 replies
                  
                
            
      Answer selected by
        robjtede
  
    Sign up for free
    to join this conversation on GitHub.
    Already have an account?
    Sign in to comment
  
        
    
Any SMTP client you can find on crates.io will work.
If it's pool-based, then you will be able construct the client/pool once and put it in app data.