fastapi-mail icon indicating copy to clipboard operation
fastapi-mail copied to clipboard

Fastapi mail system sending mails(individual, bulk) attachments(individual, bulk)

Results 33 fastapi-mail issues
Sort by recently updated
recently updated
newest added

I use FastAPI-Mail and Celery to send notifications in the background. I want to place the static image in the template and send it to the customer. I discovered that...

When using an MS Outlook account and trying to send message from my local machine, I get the following error: ``` SMTPHeloError(response.code, response.message) aiosmtplib.errors.SMTPHeloError: (501, '5.5.4 Invalid domain name [AS4P189CA0060.EURP189.PROD.OUTLOOK.COM...

Allows the local hostname to be set, which is used when making a connection with the SMTP server. For MS Office 365 it has some rules that need to be...

i have lowest rating of mail security when i send mail through this lib. I have private key DKIM and i need to sign all my mail

fastapi 0.98 fastapi-mail 1.31 class ConnectionConfig(Settings): MAIL_USERNAME: str MAIL_PASSWORD: str MAIL_PORT: int MAIL_SERVER: str MAIL_STARTTLS: bool MAIL_SSL_TLS: bool MAIL_DEBUG: conint(gt=-1, lt=2) = 0 # type: ignore MAIL_FROM: EmailStr MAIL_FROM_NAME: Optional[str]...

Hi! I need to use ProtonMail for a project and have gone through the process to learn how to set the integration up. Proton requires to run a local software...

I've been trying to send two messages with the same body. The code for it is ``` class MailService: def __init__(self, background_tasks: BackgroundTasks) -> None: self._background_tasks = background_tasks def _send(...

Bumps [cryptography](https://github.com/pyca/cryptography) from 41.0.2 to 41.0.4. Changelog Sourced from cryptography's changelog. 41.0.4 - 2023-09-19 * Updated Windows, macOS, and Linux wheels to be compiled with OpenSSL 3.1.3. .. _v41-0-3: 41.0.3...

dependencies

I use redis as broker and celery as worker, so when I try to send messages using celery, then I got error like: Arguments: {'hostname': 'celery@639c8e328783', 'id': 'bbe0aa71-7b7b-49d5-a4ab-83cb9b1d4365', 'name': 'send_email',...

I want to use templates that are located on a different server, but I can not assign the path of remote folder to TEMPLATE_FOLDER. Here is the example path for...