# Email

# cofigure app password for gmail smtp usage in php

<div data-processed="true" data-subtree="aimfl,mfl" id="bkmrk-to-use-gmail-smtp-wi" jscontroller="v48bt" jsuid="tDlqJ_9" style="display: contents;">To use Gmail SMTP with PHP, you must enable 2-Step Verification in your Google Account, generate a 16-character</div>**App Password** from the <span data-processed="true">[Security settings](https://www.google.com/url?sa=i&source=web&rct=j&url=https://myaccount.google.com/apppasswords&ved=2ahUKEwjiiZeL2qaRAxVfV2wGHQayJi8Qy_kOegQIARAB&opi=89978449&cd&psig=AOvVaw1J2xPk-RMQ_W_rzyC78PH-&ust=1765032903648000)</span>, and then use that App Password in your PHP (e.g., PHPMailer) code instead of your regular Gmail password for SMTP authentication. You'll use `smtp.gmail.com`, port 587 with TLS/STARTTLS, and your full Gmail address as the username in your script.<span class="uJ19be notranslate" data-processed="true" data-wiz-uids="tDlqJ_d,tDlqJ_e,tDlqJ_f"><span class="vKEkVd" data-animation-atomic="" data-processed="true"> </span></span>

<div class="Y3BBE" data-hveid="CAEQAA" data-processed="true" data-sfc-cp="" id="bkmrk-" jsaction="rcuQ6b:&tDlqJ_8|npT2md" jscontroller="zcfIf" jsuid="tDlqJ_8">  
</div><div class="Fsg96" data-processed="true" data-sfc-cp="" id="bkmrk--1" jsaction="rcuQ6b:&tDlqJ_m|npT2md" jscontroller="KHhJQ" jsuid="tDlqJ_m">  
</div><div aria-level="3" class="otQkpb" data-animation-nesting="" data-processed="true" data-sfc-cp="" id="bkmrk-part-1%3A-generate-the" jscontroller="a7qCn" jsuid="tDlqJ_n" role="heading">Part 1: Generate the App Password (Google Account)</div><div aria-level="3" class="otQkpb" data-animation-nesting="" data-processed="true" data-sfc-cp="" id="bkmrk--2" jscontroller="a7qCn" jsuid="tDlqJ_n" role="heading">  
</div>1. <span class="T286Pc" data-processed="true" data-sfc-cp="">**Enable 2-Step Verification**: Go to your Google Account settings, find the "Security" tab, and ensure 2-Step Verification is turned ON.</span>
2. <span class="T286Pc" data-processed="true" data-sfc-cp="">**Go to App Passwords**: Navigate to the App Passwords page (you may need to sign in again).</span>
3. <span class="T286Pc" data-processed="true" data-sfc-cp="">**Select App/Device**: In the dropdowns, select "Mail" for the app and "Other (Custom name)" for the device (e.g., "My PHP App"), then click "Generate".</span>
4. <span class="T286Pc" data-processed="true" data-sfc-cp="">**Copy Password**: Google will provide a 16-character password. Copy this *immediately*, as you won't see it again.</span><span class="uJ19be notranslate" data-processed="true" data-wiz-uids="tDlqJ_15,tDlqJ_16,tDlqJ_17"><span class="vKEkVd" data-animation-atomic="" data-processed="true"> </span></span>

<div class="Fsg96" data-processed="true" data-sfc-cp="" id="bkmrk--3" jsaction="rcuQ6b:&tDlqJ_1d|npT2md" jscontroller="KHhJQ" jsuid="tDlqJ_1d">  
</div><div aria-level="3" class="otQkpb" data-animation-nesting="" data-processed="true" data-sfc-cp="" id="bkmrk-part-2%3A-configure-yo" jscontroller="a7qCn" jsuid="tDlqJ_1e" role="heading">Part 2: Configure Your PHP Script (PHPMailer Example)</div><div aria-level="3" class="otQkpb" data-animation-nesting="" data-processed="true" data-sfc-cp="" id="bkmrk--4" jscontroller="a7qCn" jsuid="tDlqJ_1e" role="heading">  
</div><div class="Y3BBE" data-hveid="CAUQAA" data-processed="true" data-sfc-cp="" id="bkmrk-use-the-generated-16" jsaction="rcuQ6b:&tDlqJ_1i|npT2md" jscontroller="zcfIf" jsuid="tDlqJ_1i">Use the generated 16-character password in your SMTP settings.<span class="uJ19be notranslate" data-processed="true" data-wiz-uids="tDlqJ_1j,tDlqJ_1k,tDlqJ_1l"><span class="vKEkVd" data-animation-atomic="" data-processed="true"> </span></span></div><div class="Y3BBE" data-hveid="CAUQAA" data-processed="true" data-sfc-cp="" id="bkmrk--5" jsaction="rcuQ6b:&tDlqJ_1i|npT2md" jscontroller="zcfIf" jsuid="tDlqJ_1i">  
</div><div class="Fsg96" data-processed="true" data-sfc-cp="" id="bkmrk--6" jsaction="rcuQ6b:&tDlqJ_1o|npT2md" jscontroller="KHhJQ" jsuid="tDlqJ_1o">  
</div><div class="r1PmQe" data-hveid="CAgQAA" data-processed="true" data-wiz-uids="tDlqJ_50,tDlqJ_51,tDlqJ_52" id="bkmrk-php" jscontroller="HP6Sjf" jsuid="tDlqJ_4z"><div data-processed="true"><div class="pHpOfb" data-animation-atomic="" data-processed="true"><div class="vVRw1d" data-processed="true">php</div></div></div></div>```
<?php
use PHPMailer\PHPMailer\PHPMailer;
use PHPMailer\PHPMailer\Exception;

require 'vendor/autoload.php'; // If using Composer

$mail = new PHPMailer(true);

try {
    // Server settings
    $mail->isSMTP();                            // Send using SMTP
    $mail->Host       = 'smtp.gmail.com';       // Set the SMTP server to send through
    $mail->SMTPAuth   = true;                   // Enable SMTP authentication
    $mail->Username   = 'your_email@gmail.com'; // Your Gmail address
    // Use the 16-character App Password here, NOT your regular password
    $mail->Password   = 'your_16_char_app_password'; // <<< PASTE THE GENERATED PASSWORD
    $mail->SMTPSecure = PHPMailer::ENCRYPTION_STARTTLS; // Enable TLS encryption
    $mail->Port       = 587;                    // TCP port to connect to

    // Recipients
    $mail->setFrom('your_email@gmail.com', 'Your Name');
    $mail->addAddress('recipient_email@example.com'); // Add a recipient

    // Content
    $mail->isHTML(true);                        // Set email format to HTML
    $mail->Subject = 'Test Email from PHP';
    $mail->Body    = 'This is a test email sent using Gmail SMTP with an App Password.';

    $mail->send();
    echo 'Message has been sent';
} catch (Exception $e) {
    echo "Message could not be sent. Mailer Error: {$mail->ErrorInfo}";
}
?>

```

<div class="Fsg96" data-processed="true" data-sfc-cp="" id="bkmrk--7" jsaction="rcuQ6b:&tDlqJ_55|npT2md" jscontroller="KHhJQ" jsuid="tDlqJ_55">  
</div><div aria-level="3" class="otQkpb" data-animation-nesting="" data-processed="true" data-sfc-cp="" id="bkmrk-key-smtp-settings-fo" jscontroller="a7qCn" jsuid="tDlqJ_56" role="heading">Key SMTP Settings for Gmail</div><div aria-level="3" class="otQkpb" data-animation-nesting="" data-processed="true" data-sfc-cp="" id="bkmrk--8" jscontroller="a7qCn" jsuid="tDlqJ_56" role="heading">  
</div>- <span class="T286Pc" data-processed="true" data-sfc-cp="">**Host**: `smtp.gmail.com`</span>
- <span class="T286Pc" data-processed="true" data-sfc-cp="">**Port**: `587`</span>
- <span class="T286Pc" data-processed="true" data-sfc-cp="">**Encryption**: `TLS` (STARTTLS)</span>
- <span class="T286Pc" data-processed="true" data-sfc-cp="">**Username**: Your full Gmail address</span>
- <span class="T286Pc" data-processed="true" data-sfc-cp="">**Password**: Your 16-character App Password</span><span class="uJ19be notranslate" data-processed="true" data-wiz-uids="tDlqJ_5t,tDlqJ_5u,tDlqJ_5v"><span class="vKEkVd" data-animation-atomic="" data-processed="true"> </span></span>

# popular mail apis

<div class="Y3BBE" data-hveid="CAEQAA" data-processed="true" data-sfc-cp="" id="bkmrk-popular-email-apis-i" jsaction="rcuQ6b:&VSQZl_7|npT2md" jscontroller="zcfIf" jsuid="VSQZl_7" style="font-family: 'Google Sans', Roboto, Arial, sans-serif; font-size: 16px; line-height: 24px; overflow-wrap: break-word; margin: 0px 0px 20px; color: rgb(10, 10, 10); font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;">Popular email APIs include <mark class="HxTRcb" data-processed="true" style="color: rgb(0, 29, 53); border-radius: 4px; background: linear-gradient(90deg, rgb(211, 227, 253) 50%, rgba(0, 0, 0, 0) 50%) 75% 0px / 200% 100% no-repeat scroll padding-box border-box rgba(0, 0, 0, 0); padding: 0px 2px; font-weight: 500; animation: 0.75s cubic-bezier(0.05, 0.7, 0.1, 1) 0.25s 1 normal forwards running highlight-animation;">**SendGrid, [Mailgun](https://www.google.com/search?q=Mailgun&oq=popular+mail+apis&gs_lcrp=EgZjaHJvbWUyBggAEEUYOTIJCAEQIRgKGKABMgcIAhAhGJ8FMgcIAxAhGJ8FMgcIBBAhGJ8FMgcIBRAhGJ8FMgcIBhAhGJ8FMgcIBxAhGJ8FMgcICBAhGJ8FMgcICRAhGJ8F0gEINDMwNGowajeoAgCwAgA&sourceid=chrome&ie=UTF-8&mstk=AUtExfAilrlE9yvUrQrmb07dbzsCcYDHKJaggDPyVHADDoeEyB5vZQZlLUHU4ReY8P-aP0Yn23XoOGMrCotwpkr1ECsrS7ovthm31B_jY5tMLnTQoe61mHAbo7MmmKPXjG6RuSGdF-bG83RANZwj28pDIA3zz1kM068Y2fkDDz6K8CQmFTujw7emh3bh4qmLJQ3pxswXSKJcE6z25l4eJ6Uq0m3Z6uFBA1XJ2zXiZBeX2ByGRv05oXyjlg196bg4nhR0_5RsSgoh6WKV3TAo-C6mu-dw&csui=3&ved=2ahUKEwikgY_N_7WRAxXZTGwGHWDkIfUQgK4QegQIARAE), [Postmark](https://www.google.com/search?q=Postmark&oq=popular+mail+apis&gs_lcrp=EgZjaHJvbWUyBggAEEUYOTIJCAEQIRgKGKABMgcIAhAhGJ8FMgcIAxAhGJ8FMgcIBBAhGJ8FMgcIBRAhGJ8FMgcIBhAhGJ8FMgcIBxAhGJ8FMgcICBAhGJ8FMgcICRAhGJ8F0gEINDMwNGowajeoAgCwAgA&sourceid=chrome&ie=UTF-8&mstk=AUtExfAilrlE9yvUrQrmb07dbzsCcYDHKJaggDPyVHADDoeEyB5vZQZlLUHU4ReY8P-aP0Yn23XoOGMrCotwpkr1ECsrS7ovthm31B_jY5tMLnTQoe61mHAbo7MmmKPXjG6RuSGdF-bG83RANZwj28pDIA3zz1kM068Y2fkDDz6K8CQmFTujw7emh3bh4qmLJQ3pxswXSKJcE6z25l4eJ6Uq0m3Z6uFBA1XJ2zXiZBeX2ByGRv05oXyjlg196bg4nhR0_5RsSgoh6WKV3TAo-C6mu-dw&csui=3&ved=2ahUKEwikgY_N_7WRAxXZTGwGHWDkIfUQgK4QegQIARAF), Amazon SES, and [Mailtrap](https://www.google.com/search?q=Mailtrap&oq=popular+mail+apis&gs_lcrp=EgZjaHJvbWUyBggAEEUYOTIJCAEQIRgKGKABMgcIAhAhGJ8FMgcIAxAhGJ8FMgcIBBAhGJ8FMgcIBRAhGJ8FMgcIBhAhGJ8FMgcIBxAhGJ8FMgcICBAhGJ8FMgcICRAhGJ8F0gEINDMwNGowajeoAgCwAgA&sourceid=chrome&ie=UTF-8&mstk=AUtExfAilrlE9yvUrQrmb07dbzsCcYDHKJaggDPyVHADDoeEyB5vZQZlLUHU4ReY8P-aP0Yn23XoOGMrCotwpkr1ECsrS7ovthm31B_jY5tMLnTQoe61mHAbo7MmmKPXjG6RuSGdF-bG83RANZwj28pDIA3zz1kM068Y2fkDDz6K8CQmFTujw7emh3bh4qmLJQ3pxswXSKJcE6z25l4eJ6Uq0m3Z6uFBA1XJ2zXiZBeX2ByGRv05oXyjlg196bg4nhR0_5RsSgoh6WKV3TAo-C6mu-dw&csui=3&ved=2ahUKEwikgY_N_7WRAxXZTGwGHWDkIfUQgK4QegQIARAG)**</mark>, each catering to different needs, from high-volume marketing (SendGrid) and complex transactional needs (Postmark, Mailgun) to budget-friendly AWS integration (Amazon SES) and development/testing (Mailtrap), with options like Brevo and [MailerSend](https://www.google.com/search?q=MailerSend&oq=popular+mail+apis&gs_lcrp=EgZjaHJvbWUyBggAEEUYOTIJCAEQIRgKGKABMgcIAhAhGJ8FMgcIAxAhGJ8FMgcIBBAhGJ8FMgcIBRAhGJ8FMgcIBhAhGJ8FMgcIBxAhGJ8FMgcICBAhGJ8FMgcICRAhGJ8F0gEINDMwNGowajeoAgCwAgA&sourceid=chrome&ie=UTF-8&mstk=AUtExfAilrlE9yvUrQrmb07dbzsCcYDHKJaggDPyVHADDoeEyB5vZQZlLUHU4ReY8P-aP0Yn23XoOGMrCotwpkr1ECsrS7ovthm31B_jY5tMLnTQoe61mHAbo7MmmKPXjG6RuSGdF-bG83RANZwj28pDIA3zz1kM068Y2fkDDz6K8CQmFTujw7emh3bh4qmLJQ3pxswXSKJcE6z25l4eJ6Uq0m3Z6uFBA1XJ2zXiZBeX2ByGRv05oXyjlg196bg4nhR0_5RsSgoh6WKV3TAo-C6mu-dw&csui=3&ved=2ahUKEwikgY_N_7WRAxXZTGwGHWDkIfUQgK4QegQIARAH) also gaining traction for flexibility and features.<span class="uJ19be notranslate" data-processed="true" data-wiz-uids="VSQZl_j,VSQZl_k,VSQZl_l"><span class="vKEkVd" data-animation-atomic="" data-processed="true" style="white-space: nowrap; position: relative;"> <button aria-label="View related links" class="rBl3me" data-amic="true" data-icl-uuid="80eb0dbb-bfe7-447e-9561-102fe118dd5e" data-processed="true" data-ved="2ahUKEwikgY_N_7WRAxXZTGwGHWDkIfUQye0OegQIARAI" data-wiz-attrbind="disabled=VSQZl_j/C5gNJc;class=VSQZl_j/UpSNec;" style="margin: 0px 6px 0px 0px; background: none 0% 0% / auto repeat scroll padding-box border-box rgb(229, 237, 255); border: none; border-radius: 10px; height: 20px; padding: 0px; width: 28px; position: relative; outline: 0px; cursor: pointer;" tabindex="0"><span class="wiMplc ofC0Ud" data-processed="true" style="color: rgb(0, 29, 53); display: inline-block; transform: rotate(135deg);"><svg fill="currentColor" focusable="false" height="12px" style="margin-top: 3px;" viewbox="0 0 24 24" width="12px" xmlns="http://www.w3.org/2000/svg"><path d="M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71 0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71 0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76 0 5-2.24 5-5s-2.24-5-5-5z"></path></svg></span></button></span></span></div><div class="Fsg96" data-processed="true" data-sfc-cp="" id="bkmrk-" jsaction="rcuQ6b:&VSQZl_q|npT2md" jscontroller="KHhJQ" jsuid="VSQZl_q" style="color: rgb(10, 10, 10); font-family: 'Google Sans', Roboto, Arial, sans-serif; font-size: 16px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;">  
</div><div aria-level="3" class="otQkpb" data-animation-nesting="" data-processed="true" data-sfc-cp="" id="bkmrk-top-email-api-provid" jscontroller="a7qCn" jsuid="VSQZl_r" role="heading" style="color: rgb(0, 29, 53); font-family: 'Google Sans', Roboto, Arial, sans-serif; font-size: 20px; line-height: 28px; margin: 20px 0px 10px; font-weight: 600; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;">Top Email API Providers<span class="txxDge notranslate" data-processed="true" data-wiz-uids="VSQZl_s,VSQZl_t,VSQZl_u" style="visibility: hidden;"><span class="vKEkVd" data-animation-atomic="" data-processed="true" style="white-space: nowrap; position: relative;"><button aria-label="View related links" class="rBl3me" data-amic="true" data-icl-uuid="8b44d4b1-33c5-4c75-8ea5-0271f558c146" data-processed="true" data-ved="2ahUKEwikgY_N_7WRAxXZTGwGHWDkIfUQye0OegQIAhAA" data-wiz-attrbind="disabled=VSQZl_s/C5gNJc;class=VSQZl_s/UpSNec;" style="margin: 0px 6px 0px 0px; background: none 0% 0% / auto repeat scroll padding-box border-box rgb(229, 237, 255); border: none; border-radius: 10px; height: 20px; padding: 0px; width: 28px; position: relative; outline: 0px; cursor: pointer;" tabindex="0"><span class="wiMplc ofC0Ud" data-processed="true" style="color: rgb(0, 29, 53); display: inline-block; transform: rotate(135deg);"><svg fill="currentColor" focusable="false" height="12px" style="margin-top: 3px;" viewbox="0 0 24 24" width="12px" xmlns="http://www.w3.org/2000/svg"><path d="M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71 0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71 0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76 0 5-2.24 5-5s-2.24-5-5-5z"></path></svg></span></button></span></span></div>- <span class="T286Pc" data-processed="true" data-sfc-cp="" style="overflow-wrap: break-word;">**[SendGrid](https://www.google.com/search?q=SendGrid&oq=popular+mail+apis&gs_lcrp=EgZjaHJvbWUyBggAEEUYOTIJCAEQIRgKGKABMgcIAhAhGJ8FMgcIAxAhGJ8FMgcIBBAhGJ8FMgcIBRAhGJ8FMgcIBhAhGJ8FMgcIBxAhGJ8FMgcICBAhGJ8FMgcICRAhGJ8F0gEINDMwNGowajeoAgCwAgA&sourceid=chrome&ie=UTF-8&mstk=AUtExfAilrlE9yvUrQrmb07dbzsCcYDHKJaggDPyVHADDoeEyB5vZQZlLUHU4ReY8P-aP0Yn23XoOGMrCotwpkr1ECsrS7ovthm31B_jY5tMLnTQoe61mHAbo7MmmKPXjG6RuSGdF-bG83RANZwj28pDIA3zz1kM068Y2fkDDz6K8CQmFTujw7emh3bh4qmLJQ3pxswXSKJcE6z25l4eJ6Uq0m3Z6uFBA1XJ2zXiZBeX2ByGRv05oXyjlg196bg4nhR0_5RsSgoh6WKV3TAo-C6mu-dw&csui=3&ved=2ahUKEwikgY_N_7WRAxXZTGwGHWDkIfUQgK4QegQIAxAB) (by Twilio):** Great for SMBs, combining marketing &amp; transactional emails with strong documentation and features.</span>
- <span class="T286Pc" data-processed="true" data-sfc-cp="" style="overflow-wrap: break-word;">**[Mailgun](https://www.google.com/search?q=Mailgun&oq=popular+mail+apis&gs_lcrp=EgZjaHJvbWUyBggAEEUYOTIJCAEQIRgKGKABMgcIAhAhGJ8FMgcIAxAhGJ8FMgcIBBAhGJ8FMgcIBRAhGJ8FMgcIBhAhGJ8FMgcIBxAhGJ8FMgcICBAhGJ8FMgcICRAhGJ8F0gEINDMwNGowajeoAgCwAgA&sourceid=chrome&ie=UTF-8&mstk=AUtExfAilrlE9yvUrQrmb07dbzsCcYDHKJaggDPyVHADDoeEyB5vZQZlLUHU4ReY8P-aP0Yn23XoOGMrCotwpkr1ECsrS7ovthm31B_jY5tMLnTQoe61mHAbo7MmmKPXjG6RuSGdF-bG83RANZwj28pDIA3zz1kM068Y2fkDDz6K8CQmFTujw7emh3bh4qmLJQ3pxswXSKJcE6z25l4eJ6Uq0m3Z6uFBA1XJ2zXiZBeX2ByGRv05oXyjlg196bg4nhR0_5RsSgoh6WKV3TAo-C6mu-dw&csui=3&ved=2ahUKEwikgY_N_7WRAxXZTGwGHWDkIfUQgK4QegQIAxAD) (by Sinch):** Powerful, flexible API for high-volume sending, excellent for complex needs, and offers multi-language SDKs.</span>
- <span class="T286Pc" data-processed="true" data-sfc-cp="" style="overflow-wrap: break-word;">**[Postmark](https://www.google.com/search?q=Postmark&oq=popular+mail+apis&gs_lcrp=EgZjaHJvbWUyBggAEEUYOTIJCAEQIRgKGKABMgcIAhAhGJ8FMgcIAxAhGJ8FMgcIBBAhGJ8FMgcIBRAhGJ8FMgcIBhAhGJ8FMgcIBxAhGJ8FMgcICBAhGJ8FMgcICRAhGJ8F0gEINDMwNGowajeoAgCwAgA&sourceid=chrome&ie=UTF-8&mstk=AUtExfAilrlE9yvUrQrmb07dbzsCcYDHKJaggDPyVHADDoeEyB5vZQZlLUHU4ReY8P-aP0Yn23XoOGMrCotwpkr1ECsrS7ovthm31B_jY5tMLnTQoe61mHAbo7MmmKPXjG6RuSGdF-bG83RANZwj28pDIA3zz1kM068Y2fkDDz6K8CQmFTujw7emh3bh4qmLJQ3pxswXSKJcE6z25l4eJ6Uq0m3Z6uFBA1XJ2zXiZBeX2ByGRv05oXyjlg196bg4nhR0_5RsSgoh6WKV3TAo-C6mu-dw&csui=3&ved=2ahUKEwikgY_N_7WRAxXZTGwGHWDkIfUQgK4QegQIAxAF) (by ActiveCampaign):** Focuses on speed and deliverability for critical transactional emails, with clean tools and "Message Streams".</span>
- <span class="T286Pc" data-processed="true" data-sfc-cp="" style="overflow-wrap: break-word;">**[Amazon SES](https://www.google.com/search?q=Amazon+SES&oq=popular+mail+apis&gs_lcrp=EgZjaHJvbWUyBggAEEUYOTIJCAEQIRgKGKABMgcIAhAhGJ8FMgcIAxAhGJ8FMgcIBBAhGJ8FMgcIBRAhGJ8FMgcIBhAhGJ8FMgcIBxAhGJ8FMgcICBAhGJ8FMgcICRAhGJ8F0gEINDMwNGowajeoAgCwAgA&sourceid=chrome&ie=UTF-8&mstk=AUtExfAilrlE9yvUrQrmb07dbzsCcYDHKJaggDPyVHADDoeEyB5vZQZlLUHU4ReY8P-aP0Yn23XoOGMrCotwpkr1ECsrS7ovthm31B_jY5tMLnTQoe61mHAbo7MmmKPXjG6RuSGdF-bG83RANZwj28pDIA3zz1kM068Y2fkDDz6K8CQmFTujw7emh3bh4qmLJQ3pxswXSKJcE6z25l4eJ6Uq0m3Z6uFBA1XJ2zXiZBeX2ByGRv05oXyjlg196bg4nhR0_5RsSgoh6WKV3TAo-C6mu-dw&csui=3&ved=2ahUKEwikgY_N_7WRAxXZTGwGHWDkIfUQgK4QegQIAxAH) (Simple Email Service):** Extremely cost-effective, integrates seamlessly with the AWS ecosystem, best for budget-conscious AWS users.</span>
- <span class="T286Pc" data-processed="true" data-sfc-cp="" style="overflow-wrap: break-word;">**[Mailtrap](https://www.google.com/search?q=Mailtrap&oq=popular+mail+apis&gs_lcrp=EgZjaHJvbWUyBggAEEUYOTIJCAEQIRgKGKABMgcIAhAhGJ8FMgcIAxAhGJ8FMgcIBBAhGJ8FMgcIBRAhGJ8FMgcIBhAhGJ8FMgcIBxAhGJ8FMgcICBAhGJ8FMgcICRAhGJ8F0gEINDMwNGowajeoAgCwAgA&sourceid=chrome&ie=UTF-8&mstk=AUtExfAilrlE9yvUrQrmb07dbzsCcYDHKJaggDPyVHADDoeEyB5vZQZlLUHU4ReY8P-aP0Yn23XoOGMrCotwpkr1ECsrS7ovthm31B_jY5tMLnTQoe61mHAbo7MmmKPXjG6RuSGdF-bG83RANZwj28pDIA3zz1kM068Y2fkDDz6K8CQmFTujw7emh3bh4qmLJQ3pxswXSKJcE6z25l4eJ6Uq0m3Z6uFBA1XJ2zXiZBeX2ByGRv05oXyjlg196bg4nhR0_5RsSgoh6WKV3TAo-C6mu-dw&csui=3&ved=2ahUKEwikgY_N_7WRAxXZTGwGHWDkIfUQgK4QegQIAxAJ):** Popular for testing/staging, offering a safe environment to catch and inspect emails, with strong analytics.</span>
- <span class="T286Pc" data-processed="true" data-sfc-cp="" style="overflow-wrap: break-word;">**[Brevo](https://www.google.com/search?q=Brevo&oq=popular+mail+apis&gs_lcrp=EgZjaHJvbWUyBggAEEUYOTIJCAEQIRgKGKABMgcIAhAhGJ8FMgcIAxAhGJ8FMgcIBBAhGJ8FMgcIBRAhGJ8FMgcIBhAhGJ8FMgcIBxAhGJ8FMgcICBAhGJ8FMgcICRAhGJ8F0gEINDMwNGowajeoAgCwAgA&sourceid=chrome&ie=UTF-8&mstk=AUtExfAilrlE9yvUrQrmb07dbzsCcYDHKJaggDPyVHADDoeEyB5vZQZlLUHU4ReY8P-aP0Yn23XoOGMrCotwpkr1ECsrS7ovthm31B_jY5tMLnTQoe61mHAbo7MmmKPXjG6RuSGdF-bG83RANZwj28pDIA3zz1kM068Y2fkDDz6K8CQmFTujw7emh3bh4qmLJQ3pxswXSKJcE6z25l4eJ6Uq0m3Z6uFBA1XJ2zXiZBeX2ByGRv05oXyjlg196bg4nhR0_5RsSgoh6WKV3TAo-C6mu-dw&csui=3&ved=2ahUKEwikgY_N_7WRAxXZTGwGHWDkIfUQgK4QegQIAxAL) (formerly Sendinblue):** Offers marketing automation alongside transactional features, with good free plan options.</span>
- <span class="T286Pc" data-processed="true" data-sfc-cp="" style="overflow-wrap: break-word;">**[MailerSend](https://www.google.com/search?q=MailerSend&oq=popular+mail+apis&gs_lcrp=EgZjaHJvbWUyBggAEEUYOTIJCAEQIRgKGKABMgcIAhAhGJ8FMgcIAxAhGJ8FMgcIBBAhGJ8FMgcIBRAhGJ8FMgcIBhAhGJ8FMgcIBxAhGJ8FMgcICBAhGJ8FMgcICRAhGJ8F0gEINDMwNGowajeoAgCwAgA&sourceid=chrome&ie=UTF-8&mstk=AUtExfAilrlE9yvUrQrmb07dbzsCcYDHKJaggDPyVHADDoeEyB5vZQZlLUHU4ReY8P-aP0Yn23XoOGMrCotwpkr1ECsrS7ovthm31B_jY5tMLnTQoe61mHAbo7MmmKPXjG6RuSGdF-bG83RANZwj28pDIA3zz1kM068Y2fkDDz6K8CQmFTujw7emh3bh4qmLJQ3pxswXSKJcE6z25l4eJ6Uq0m3Z6uFBA1XJ2zXiZBeX2ByGRv05oXyjlg196bg4nhR0_5RsSgoh6WKV3TAo-C6mu-dw&csui=3&ved=2ahUKEwikgY_N_7WRAxXZTGwGHWDkIfUQgK4QegQIAxAN):** Known for user-friendly interface, good analytics, and solid deliverability, with generous free tier.</span>
- <span class="T286Pc" data-processed="true" data-sfc-cp="" style="overflow-wrap: break-word;">**[SparkPost](https://www.google.com/search?q=SparkPost&oq=popular+mail+apis&gs_lcrp=EgZjaHJvbWUyBggAEEUYOTIJCAEQIRgKGKABMgcIAhAhGJ8FMgcIAxAhGJ8FMgcIBBAhGJ8FMgcIBRAhGJ8FMgcIBhAhGJ8FMgcIBxAhGJ8FMgcICBAhGJ8FMgcICRAhGJ8F0gEINDMwNGowajeoAgCwAgA&sourceid=chrome&ie=UTF-8&mstk=AUtExfAilrlE9yvUrQrmb07dbzsCcYDHKJaggDPyVHADDoeEyB5vZQZlLUHU4ReY8P-aP0Yn23XoOGMrCotwpkr1ECsrS7ovthm31B_jY5tMLnTQoe61mHAbo7MmmKPXjG6RuSGdF-bG83RANZwj28pDIA3zz1kM068Y2fkDDz6K8CQmFTujw7emh3bh4qmLJQ3pxswXSKJcE6z25l4eJ6Uq0m3Z6uFBA1XJ2zXiZBeX2ByGRv05oXyjlg196bg4nhR0_5RsSgoh6WKV3TAo-C6mu-dw&csui=3&ved=2ahUKEwikgY_N_7WRAxXZTGwGHWDkIfUQgK4QegQIAxAP):** Enterprise-focused, known for high deliverability and support for large-scale email programs.</span><span class="uJ19be notranslate" data-processed="true" data-wiz-uids="VSQZl_1s,VSQZl_1t,VSQZl_1u"><span class="vKEkVd" data-animation-atomic="" data-processed="true" style="white-space: nowrap; position: relative;"> <button aria-label="View related links" class="rBl3me" data-amic="true" data-icl-uuid="7ab89384-f895-4989-99b9-aec93786ded3" data-processed="true" data-ved="2ahUKEwikgY_N_7WRAxXZTGwGHWDkIfUQye0OegQIAxAQ" data-wiz-attrbind="disabled=VSQZl_1s/C5gNJc;class=VSQZl_1s/UpSNec;" style="margin: 0px 6px 0px 0px; background: none 0% 0% / auto repeat scroll padding-box border-box rgb(229, 237, 255); border: none; border-radius: 10px; height: 20px; padding: 0px; width: 28px; position: relative; outline: 0px; cursor: pointer;" tabindex="0"><span class="wiMplc ofC0Ud" data-processed="true" style="color: rgb(0, 29, 53); display: inline-block; transform: rotate(135deg);"><svg fill="currentColor" focusable="false" height="12px" style="margin-top: 3px;" viewbox="0 0 24 24" width="12px" xmlns="http://www.w3.org/2000/svg"><path d="M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71 0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71 0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76 0 5-2.24 5-5s-2.24-5-5-5z"></path></svg></span></button></span></span>

<div class="Fsg96" data-processed="true" data-sfc-cp="" id="bkmrk--1" jsaction="rcuQ6b:&VSQZl_21|npT2md" jscontroller="KHhJQ" jsuid="VSQZl_21" style="color: rgb(10, 10, 10); font-family: 'Google Sans', Roboto, Arial, sans-serif; font-size: 16px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;">  
</div><div aria-level="3" class="otQkpb" data-animation-nesting="" data-processed="true" data-sfc-cp="" id="bkmrk-how-to-choose" jscontroller="a7qCn" jsuid="VSQZl_22" role="heading" style="color: rgb(0, 29, 53); font-family: 'Google Sans', Roboto, Arial, sans-serif; font-size: 20px; line-height: 28px; margin: 20px 0px 10px; font-weight: 600; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;">How to Choose<span class="txxDge notranslate" data-processed="true" data-wiz-uids="VSQZl_23,VSQZl_24,VSQZl_25" style="visibility: hidden;"><span class="vKEkVd" data-animation-atomic="" data-processed="true" style="white-space: nowrap; position: relative;"><button aria-label="View related links" class="rBl3me" data-amic="true" data-icl-uuid="c426845a-c3e6-4d55-b9a4-2bd0a4a960aa" data-processed="true" data-ved="2ahUKEwikgY_N_7WRAxXZTGwGHWDkIfUQye0OegQIBBAA" data-wiz-attrbind="disabled=VSQZl_23/C5gNJc;class=VSQZl_23/UpSNec;" style="margin: 0px 6px 0px 0px; background: none 0% 0% / auto repeat scroll padding-box border-box rgb(229, 237, 255); border: none; border-radius: 10px; height: 20px; padding: 0px; width: 28px; position: relative; outline: 0px; cursor: pointer;" tabindex="0"><span class="wiMplc ofC0Ud" data-processed="true" style="color: rgb(0, 29, 53); display: inline-block; transform: rotate(135deg);"><svg fill="currentColor" focusable="false" height="12px" style="margin-top: 3px;" viewbox="0 0 24 24" width="12px" xmlns="http://www.w3.org/2000/svg"><path d="M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71 0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71 0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76 0 5-2.24 5-5s-2.24-5-5-5z"></path></svg></span></button></span></span></div>- <span class="T286Pc" data-processed="true" data-sfc-cp="" style="overflow-wrap: break-word;">**For Transactional Speed:** Postmark is a top choice.</span>
- <span class="T286Pc" data-processed="true" data-sfc-cp="" style="overflow-wrap: break-word;">**For Marketing &amp; Scale:** SendGrid or Brevo.</span>
- <span class="T286Pc" data-processed="true" data-sfc-cp="" style="overflow-wrap: break-word;">**For Budget/AWS Integration:** Amazon SES.</span>
- <span class="T286Pc" data-processed="true" data-sfc-cp="" style="overflow-wrap: break-word;">**For Development/Testing:** Mailtrap.</span>
- <span class="T286Pc" data-processed="true" data-sfc-cp="" style="overflow-wrap: break-word;">**For High Volume &amp; Flexibility:** Mailgun.</span><span class="uJ19be notranslate" data-processed="true" data-wiz-uids="VSQZl_2m,VSQZl_2n,VSQZl_2o"><span class="vKEkVd" data-animation-atomic="" data-processed="true" style="white-space: nowrap; position: relative;"> <button aria-label="View related links" class="rBl3me" data-amic="true" data-icl-uuid="0d3fe483-b1be-4441-95a5-6ebb0df07ea5" data-processed="true" data-ved="2ahUKEwikgY_N_7WRAxXZTGwGHWDkIfUQye0OegQIBRAF" data-wiz-attrbind="disabled=VSQZl_2m/C5gNJc;class=VSQZl_2m/UpSNec;" style="margin: 0px 6px 0px 0px; background: none 0% 0% / auto repeat scroll padding-box border-box rgb(229, 237, 255); border: none; border-radius: 10px; height: 20px; padding: 0px; width: 28px; position: relative; outline: 0px; cursor: pointer;" tabindex="0"><span class="wiMplc ofC0Ud" data-processed="true" style="color: rgb(0, 29, 53); display: inline-block; transform: rotate(135deg);"><svg fill="currentColor" focusable="false" height="12px" style="margin-top: 3px;" viewbox="0 0 24 24" width="12px" xmlns="http://www.w3.org/2000/svg"><path d="M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71 0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71 0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76 0 5-2.24 5-5s-2.24-5-5-5z"></path></svg></span></button></span></span>

<div class="Y3BBE" data-hveid="CAcQAA" data-processed="true" data-sfc-cp="" id="bkmrk-these-apis-offer-rob" jsaction="rcuQ6b:&VSQZl_4b|npT2md" jscontroller="zcfIf" jsuid="VSQZl_4b" style="font-family: 'Google Sans', Roboto, Arial, sans-serif; font-size: 16px; line-height: 24px; overflow-wrap: break-word; margin: 10px 0px 20px; color: rgb(10, 10, 10); font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;">These APIs offer robust features like webhooks, analytics, and various libraries (Node.js, Python, PHP, etc.) to integrate email into applications.<span class="uJ19be notranslate" data-processed="true" data-wiz-uids="VSQZl_4c,VSQZl_4d,VSQZl_4e"><span class="vKEkVd" data-animation-atomic="" data-processed="true" style="white-space: nowrap; position: relative;"></span></span></div>

# what is snooze in gmail

<div class="Y3BBE" data-hveid="CAAIABAC" data-sfc-cp="" id="bkmrk-n-gmail%2C-%22snooze%22%C2%A0te" jsaction="rcuQ6b:&D2TkSd_5|npT2md" jscontroller="zcfIf" jsuid="D2TkSd_5" style="font-family: 'Google Sans', Roboto, Arial, sans-serif; font-size: 16px; line-height: 24px; overflow-wrap: break-word; margin: 0px 0px 20px; color: rgb(10, 10, 10); font-weight: 400; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;">n Gmail, "snooze" <mark class="HxTRcb" style="color: rgb(0, 29, 53); border-radius: 4px; background: linear-gradient(90deg, rgb(211, 227, 253) 50%, rgba(0, 0, 0, 0) 50%) 75% 0px / 200% 100% no-repeat scroll padding-box border-box rgba(0, 0, 0, 0); padding: 0px 2px; font-weight: 500; animation: 0.75s cubic-bezier(0.05, 0.7, 0.1, 1) 0.25s 1 normal forwards running highlight-animation;">temporarily removes an email from your inbox, hiding it until a specific date and time you choose</mark>. When the designated time arrives, the email reappears at the top of your inbox as if it were new. This feature is useful for managing tasks and clearing your inbox of emails that don't require immediate action, such as appointment reminders or flight confirmations.<span class="uJ19be notranslate" data-wiz-uids="D2TkSd_8,D2TkSd_9,D2TkSd_a"><span class="vKEkVd" data-animation-atomic="" style="white-space: nowrap; position: relative;"> <button aria-label="View related links" class="rBl3me" data-amic="true" data-icl-uuid="7dbc5247-45ff-48f8-a6c8-e0fb2df3543d" data-ved="2ahUKEwib8-WIzoSRAxVvUGcHHbCCFcwQye0OegYIAAgAEAQ" data-wiz-attrbind="disabled=D2TkSd_8_C5gNJc;class=D2TkSd_8_UpSNec;" style="margin: 0px 6px 0px 0px; background: none 0% 0% / auto repeat scroll padding-box border-box rgb(229, 237, 255); border: none; border-radius: 10px; height: 20px; padding: 0px; width: 28px; position: relative; outline: 0px; cursor: pointer;" tabindex="0"><span class="wiMplc ofC0Ud" style="color: rgb(0, 29, 53); display: inline-block; transform: rotate(135deg);"><svg fill="currentColor" focusable="false" height="12px" style="margin-top: 3px;" viewbox="0 0 24 24" width="12px" xmlns="http://www.w3.org/2000/svg"><path d="M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71 0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71 0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76 0 5-2.24 5-5s-2.24-5-5-5z"></path></svg></span></button></span></span></div><span id="bkmrk--1" style="color: rgb(10, 10, 10); font-family: 'Google Sans', Roboto, Arial, sans-serif; font-size: 16px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;"></span><span id="bkmrk--2" style="color: rgb(10, 10, 10); font-family: 'Google Sans', Roboto, Arial, sans-serif; font-size: 16px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;"></span><span id="bkmrk--3" style="color: rgb(10, 10, 10); font-family: 'Google Sans', Roboto, Arial, sans-serif; font-size: 16px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;"></span><span id="bkmrk--4" style="color: rgb(10, 10, 10); font-family: 'Google Sans', Roboto, Arial, sans-serif; font-size: 16px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;"></span><span id="bkmrk--5" style="color: rgb(10, 10, 10); font-family: 'Google Sans', Roboto, Arial, sans-serif; font-size: 16px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;"></span>

- <span class="T286Pc" data-sfc-cp="" style="overflow-wrap: break-word;">**How it works:** When you snooze an email, it's moved to a "Snoozed" folder. The email will reappear in your inbox at the time you set, which can be a preset option (like "tomorrow" or "next week") or a specific date and time.</span>
- <span class="T286Pc" data-sfc-cp="" style="overflow-wrap: break-word;">**How to snooze:**</span>
- <span class="T286Pc" data-sfc-cp="" style="overflow-wrap: break-word;">From your inbox, hover over an email and click the clock icon that appears on the right<span id="bkmrk-.">.</span></span>
- <span class="T286Pc" data-sfc-cp="" style="overflow-wrap: break-word;">Alternatively, open the email and click the snooze icon in the toolbar at the top.</span><span id="bkmrk--6"></span>
- <span class="T286Pc" data-sfc-cp="" style="overflow-wrap: break-word;">Select a time and date from the options, or choose "Pick date &amp; time" to set a custom one.</span><span id="bkmrk--7"></span>

<span id="bkmrk-where-to-find-snooze-1"><span class="T286Pc" data-sfc-cp="" style="overflow-wrap: break-word;">**Where to find snoozed emails:** You can access all your snoozed emails by clicking "Snoozed" in the left-hand menu or by searching for "in:snoozed" in the search bar.</span><span class="uJ19be notranslate" data-wiz-uids="D2TkSd_x,D2TkSd_y,D2TkSd_z"><span class="vKEkVd" data-animation-atomic="" style="white-space: nowrap; position: relative;"></span></span></span>

# email authentication protocols like SPF, DKIM, and DMARC

<div class="Y3BBE" data-hveid="CAEQAA" data-processed="true" data-sfc-cp="" id="bkmrk-spf%2C-dkim%2C-and-dmarc" jsaction="rcuQ6b:&IEzzXb_8|npT2md" jscontroller="zcfIf" jsuid="IEzzXb_8" style="font-family: 'Google Sans', Roboto, Arial, sans-serif; font-size: 16px; line-height: 24px; overflow-wrap: break-word; margin: 0px 0px 20px; color: rgb(10, 10, 10); font-weight: 400; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;">SPF, DKIM, and DMARC are email authentication protocols that <mark class="HxTRcb" style="color: rgb(0, 29, 53); border-radius: 4px; background: linear-gradient(90deg, rgb(211, 227, 253) 50%, rgba(0, 0, 0, 0) 50%) 75% 0px / 200% 100% no-repeat scroll padding-box border-box rgba(0, 0, 0, 0); padding: 0px 2px; font-weight: 500; animation: 0.75s cubic-bezier(0.05, 0.7, 0.1, 1) 0.25s 1 normal forwards running highlight-animation;">verify an email's sender to prevent spam and phishing</mark>. SPF checks if the sending server is authorized, DKIM verifies the email's integrity with a digital signature, and DMARC tells receiving servers how to handle emails that fail SPF or DKIM checks.<span class="uJ19be notranslate" data-wiz-uids="IEzzXb_f,IEzzXb_g,IEzzXb_h"><span class="vKEkVd" data-animation-atomic="" style="white-space: nowrap; position: relative;"> <button aria-label="View related links" class="rBl3me" data-amic="true" data-icl-uuid="ad106cb6-ce07-44f3-9ee6-a36448360595" data-ved="2ahUKEwingcHb54ORAxUbUWwGHbQnF7IQye0OegQIARAE" data-wiz-attrbind="disabled=IEzzXb_f_C5gNJc;class=IEzzXb_f_UpSNec;" style="margin: 0px 6px 0px 0px; background: none 0% 0% / auto repeat scroll padding-box border-box rgb(229, 237, 255); border: none; border-radius: 10px; height: 20px; padding: 0px; width: 28px; position: relative; outline: 0px; cursor: pointer;" tabindex="0"><span class="wiMplc ofC0Ud" style="color: rgb(0, 29, 53); display: inline-block; transform: rotate(135deg);"><svg fill="currentColor" focusable="false" height="12px" style="margin-top: 3px;" viewbox="0 0 24 24" width="12px" xmlns="http://www.w3.org/2000/svg"><path d="M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71 0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71 0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76 0 5-2.24 5-5s-2.24-5-5-5z"></path></svg></span></button></span></span></div><div class="Fsg96" data-processed="true" data-sfc-cp="" id="bkmrk-" jsaction="rcuQ6b:&IEzzXb_l|npT2md" jscontroller="KHhJQ" jsuid="IEzzXb_l" style="color: rgb(10, 10, 10); font-family: 'Google Sans', Roboto, Arial, sans-serif; font-size: 16px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;">  
</div><div aria-level="3" class="otQkpb" data-animation-nesting="" data-processed="true" data-sfc-cp="" id="bkmrk-spf-%28sender-policy-f" jscontroller="a7qCn" jsuid="IEzzXb_m" role="heading" style="color: rgb(10, 10, 10); font-family: 'Google Sans', Roboto, Arial, sans-serif; font-size: 20px; line-height: 28px; font-weight: 600; margin: 20px 0px 10px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;">SPF (Sender Policy Framework)<span class="uJ19be notranslate" data-wiz-uids="IEzzXb_n,IEzzXb_o,IEzzXb_p"><span class="vKEkVd" data-animation-atomic="" style="white-space: nowrap; position: relative;"> <button aria-label="View related links" class="rBl3me" data-amic="true" data-icl-uuid="3226af4a-2c75-4157-9021-587fcf0e9464" data-ved="2ahUKEwingcHb54ORAxUbUWwGHbQnF7IQye0OegQIAhAA" data-wiz-attrbind="disabled=IEzzXb_n_C5gNJc;class=IEzzXb_n_UpSNec;" style="margin: 0px 6px 0px 0px; background: none 0% 0% / auto repeat scroll padding-box border-box rgb(229, 237, 255); border: none; border-radius: 10px; height: 20px; padding: 0px; width: 28px; position: relative; outline: 0px; cursor: pointer;" tabindex="0"><span class="wiMplc ofC0Ud" style="color: rgb(0, 29, 53); display: inline-block; transform: rotate(135deg);"><svg fill="currentColor" focusable="false" height="12px" style="margin-top: 3px;" viewbox="0 0 24 24" width="12px" xmlns="http://www.w3.org/2000/svg"><path d="M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71 0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71 0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76 0 5-2.24 5-5s-2.24-5-5-5z"></path></svg></span></button></span></span></div>- <span class="T286Pc" data-sfc-cp="" style="overflow-wrap: break-word;">**What it is:** A DNS record that lists the IP addresses authorized to send emails for a specific domain.</span>
- <span class="T286Pc" data-sfc-cp="" style="overflow-wrap: break-word;">**How it works:** When an email arrives, the receiving server checks the sender's IP address against the SPF record in the domain's DNS to see if it's on the approved list.</span>
- <span class="T286Pc" data-sfc-cp="" style="overflow-wrap: break-word;">**Purpose:** To prevent spammers from sending emails with a forged sender address from your domain.</span><span class="uJ19be notranslate" data-wiz-uids="IEzzXb_10,IEzzXb_11,IEzzXb_12"><span class="vKEkVd" data-animation-atomic="" style="white-space: nowrap; position: relative;"> <button aria-label="View related links" class="rBl3me" data-amic="true" data-icl-uuid="b9f36538-83c4-450c-9a48-c6d6f52c04db" data-ved="2ahUKEwingcHb54ORAxUbUWwGHbQnF7IQye0OegQIAxAD" data-wiz-attrbind="disabled=IEzzXb_10_C5gNJc;class=IEzzXb_10_UpSNec;" style="margin: 0px 6px 0px 0px; background: none 0% 0% / auto repeat scroll padding-box border-box rgb(229, 237, 255); border: none; border-radius: 10px; height: 20px; padding: 0px; width: 28px; position: relative; outline: 0px; cursor: pointer;" tabindex="0"><span class="wiMplc ofC0Ud" style="color: rgb(0, 29, 53); display: inline-block; transform: rotate(135deg);"><svg fill="currentColor" focusable="false" height="12px" style="margin-top: 3px;" viewbox="0 0 24 24" width="12px" xmlns="http://www.w3.org/2000/svg"><path d="M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71 0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71 0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76 0 5-2.24 5-5s-2.24-5-5-5z"></path></svg></span></button></span></span>

<div class="Fsg96" data-processed="true" data-sfc-cp="" id="bkmrk--1" jsaction="rcuQ6b:&IEzzXb_16|npT2md" jscontroller="KHhJQ" jsuid="IEzzXb_16" style="color: rgb(10, 10, 10); font-family: 'Google Sans', Roboto, Arial, sans-serif; font-size: 16px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;">  
</div><div aria-level="3" class="otQkpb" data-animation-nesting="" data-processed="true" data-sfc-cp="" id="bkmrk-dkim-%28domainkeys-ide" jscontroller="a7qCn" jsuid="IEzzXb_17" role="heading" style="color: rgb(10, 10, 10); font-family: 'Google Sans', Roboto, Arial, sans-serif; font-size: 20px; line-height: 28px; font-weight: 600; margin: 20px 0px 10px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;">DKIM (DomainKeys Identified Mail)<span class="uJ19be notranslate" data-processed="true" data-wiz-uids="IEzzXb_18,IEzzXb_19,IEzzXb_1a"><span class="vKEkVd" data-animation-atomic="" data-processed="true" style="white-space: nowrap; position: relative;"> <button aria-label="View related links" class="rBl3me" data-amic="true" data-icl-uuid="1129eb1b-3a24-4d63-8682-19bfa497ccf8" data-processed="true" data-ved="2ahUKEwingcHb54ORAxUbUWwGHbQnF7IQye0OegQIBBAA" data-wiz-attrbind="disabled=IEzzXb_18_C5gNJc;class=IEzzXb_18_UpSNec;" style="margin: 0px 6px 0px 0px; background: none 0% 0% / auto repeat scroll padding-box border-box rgb(229, 237, 255); border: none; border-radius: 10px; height: 20px; padding: 0px; width: 28px; position: relative; outline: 0px; cursor: pointer;" tabindex="0"><span class="wiMplc ofC0Ud" data-processed="true" style="color: rgb(0, 29, 53); display: inline-block; transform: rotate(135deg);"><svg fill="currentColor" focusable="false" height="12px" style="margin-top: 3px;" viewbox="0 0 24 24" width="12px" xmlns="http://www.w3.org/2000/svg"><path d="M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71 0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71 0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76 0 5-2.24 5-5s-2.24-5-5-5z"></path></svg></span></button></span></span></div>- <span class="T286Pc" data-processed="true" data-sfc-cp="" style="overflow-wrap: break-word;">**What it is:** A cryptographic signature added to email headers.</span>
- <span class="T286Pc" data-processed="true" data-sfc-cp="" style="overflow-wrap: break-word;">**How it works:** The sending server uses a private key to sign each outgoing email. The public key, stored in the domain's DNS, is used by the receiving server to verify the signature and confirm the message content hasn't been altered.</span>
- <span class="T286Pc" data-processed="true" data-sfc-cp="" style="overflow-wrap: break-word;">**Purpose:** To ensure the email originated from the domain it claims to be from and that its contents have not been tampered with in transit.</span><span class="uJ19be notranslate" data-processed="true" data-wiz-uids="IEzzXb_1l,IEzzXb_1m,IEzzXb_1n"><span class="vKEkVd" data-animation-atomic="" data-processed="true" style="white-space: nowrap; position: relative;"> <button aria-label="View related links" class="rBl3me" data-amic="true" data-icl-uuid="91d278c6-24b1-4380-9706-268377f84d00" data-processed="true" data-ved="2ahUKEwingcHb54ORAxUbUWwGHbQnF7IQye0OegQIBRAD" data-wiz-attrbind="disabled=IEzzXb_1l_C5gNJc;class=IEzzXb_1l_UpSNec;" style="margin: 0px 6px 0px 0px; background: none 0% 0% / auto repeat scroll padding-box border-box rgb(229, 237, 255); border: none; border-radius: 10px; height: 20px; padding: 0px; width: 28px; position: relative; outline: 0px; cursor: pointer;" tabindex="0"><span class="wiMplc ofC0Ud" data-processed="true" style="color: rgb(0, 29, 53); display: inline-block; transform: rotate(135deg);"><svg fill="currentColor" focusable="false" height="12px" style="margin-top: 3px;" viewbox="0 0 24 24" width="12px" xmlns="http://www.w3.org/2000/svg"><path d="M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71 0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71 0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76 0 5-2.24 5-5s-2.24-5-5-5z"></path></svg></span></button></span></span>

<div class="Fsg96" data-processed="true" data-sfc-cp="" id="bkmrk--2" jsaction="rcuQ6b:&IEzzXb_1s|npT2md" jscontroller="KHhJQ" jsuid="IEzzXb_1s" style="color: rgb(10, 10, 10); font-family: 'Google Sans', Roboto, Arial, sans-serif; font-size: 16px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;">  
</div><div aria-level="3" class="otQkpb" data-animation-nesting="" data-processed="true" data-sfc-cp="" id="bkmrk-dmarc-%28domain-based-" jscontroller="a7qCn" jsuid="IEzzXb_1t" role="heading" style="color: rgb(10, 10, 10); font-family: 'Google Sans', Roboto, Arial, sans-serif; font-size: 20px; line-height: 28px; font-weight: 600; margin: 20px 0px 10px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;">DMARC (Domain-based Message Authentication, Reporting, and Conformance)<span class="uJ19be notranslate" data-processed="true" data-wiz-uids="IEzzXb_1u,IEzzXb_1v,IEzzXb_1w"><span class="vKEkVd" data-animation-atomic="" data-processed="true" style="white-space: nowrap; position: relative;"> <button aria-label="View related links" class="rBl3me" data-amic="true" data-icl-uuid="950fbb7f-3eda-48df-8e15-288b48eb0410" data-processed="true" data-ved="2ahUKEwingcHb54ORAxUbUWwGHbQnF7IQye0OegQIBhAA" data-wiz-attrbind="disabled=IEzzXb_1u_C5gNJc;class=IEzzXb_1u_UpSNec;" style="margin: 0px 6px 0px 0px; background: none 0% 0% / auto repeat scroll padding-box border-box rgb(229, 237, 255); border: none; border-radius: 10px; height: 20px; padding: 0px; width: 28px; position: relative; outline: 0px; cursor: pointer;" tabindex="0"><span class="wiMplc ofC0Ud" data-processed="true" style="color: rgb(0, 29, 53); display: inline-block; transform: rotate(135deg);"><svg fill="currentColor" focusable="false" height="12px" style="margin-top: 3px;" viewbox="0 0 24 24" width="12px" xmlns="http://www.w3.org/2000/svg"><path d="M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71 0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71 0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76 0 5-2.24 5-5s-2.24-5-5-5z"></path></svg></span></button></span></span></div>- <span class="T286Pc" data-processed="true" data-sfc-cp="" style="overflow-wrap: break-word;">**What it is:** A policy that leverages both SPF and DKIM.</span>
- <span class="T286Pc" data-processed="true" data-sfc-cp="" style="overflow-wrap: break-word;">**How it works:** It provides instructions to the receiving server on what to do with emails that fail SPF and/or DKIM checks. It can tell servers to do nothing (`p=none`), send failing emails to spam (`p=quarantine`), or reject them entirely (`p=reject`). It also sends reports back to the sender to provide visibility into email traffic and authentication results.</span>
- <span class="T286Pc" data-processed="true" data-sfc-cp="" style="overflow-wrap: break-word;">**Purpose:** To give domain owners control over how unauthenticated emails are handled and to protect their domain's reputation by preventing fraudulent emails from reaching inboxes</span>

# what is PowerMTA

<div class="WaaZC" id="bkmrk-powermta-is%C2%A0a-high-p" style="color: rgb(10, 10, 10); font-family: 'Google Sans', Arial, sans-serif; font-size: 16px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;"><div class="rPeykc" data-hveid="CBMQAQ" data-ved="2ahUKEwi6hsqr6IORAxUlUGwGHVU7GwcQo_EKegQIExAB" style="margin: 0px 0px 10px;"><span data-huuid="14638700321208956705">PowerMTA is <mark class="QVRyCf" style="background: linear-gradient(90deg, rgb(211, 227, 253) 50%, rgba(0, 0, 0, 0) 50%) 75% 0px / 200% 100% no-repeat scroll padding-box border-box rgba(0, 0, 0, 0); color: inherit; font-weight: 500; border-radius: 4px; padding: 0px 2px; animation: 0.75s cubic-bezier(0.05, 0.7, 0.1, 1) 0.25s 1 normal forwards running highlight-animation;">a high-performance Mail Transfer Agent (MTA) designed for sending large volumes of business-critical emails reliably</mark>. </span><span data-huuid="14638700321208955160">It is used by email service providers, large organizations, and marketing platforms to ensure high deliverability by managing processes like IP rotation, bounce handling, and real-time delivery monitoring. </span><span data-huuid="14638700321208957711">Its key features include a robust analytics dashboard, advanced configuration for sending policies, and the ability to handle millions of emails per hour.<span class="pjBG2e" data-cid="49824467-1116-47cf-9245-99d602dbf244"><span class="UV3uM" style="white-space: nowrap;"> </span></span></span><div class="NPrrbc" data-cid="49824467-1116-47cf-9245-99d602dbf244" data-uuids="14638700321208956705,14638700321208955160,14638700321208957711" style="margin-inline-end: 6px; vertical-align: middle; display: inline-flex;"><div aria-label="View related links" class="BMebGe btku5b LwdV0e FR7ZSc OJeuxf" data-hveid="CCAQAQ" data-ved="2ahUKEwi6hsqr6IORAxUlUGwGHVU7GwcQ3fYKegQIIBAB" jsaction="KjsqPd" jsname="HtgYJd" role="button" style="display: inline-flex !important; vertical-align: middle; cursor: pointer; outline: 0px; -webkit-tap-highlight-color: transparent; color: rgb(28, 65, 154);" tabindex="0"><div class="niO4u" style="display: flex; justify-content: center; position: relative; align-items: center; width: 28px; z-index: 0; box-sizing: border-box; border-radius: 9999px; padding: 0px; border: 1px solid transparent; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: rgb(229, 237, 255) !important; height: 20px; margin: 0px auto; min-height: 20px;"><span class="TwMgNb Hkv2Pe" style="color: rgb(31, 31, 31) !important; background: unset !important; display: flex; align-items: center;"><span class="iPjmzb Sorfoc gNGSDf" style="display: flex; height: unset; rotate: 135deg;"><span class="z1asCe Sb7k4e" style="display: inline-block; fill: currentcolor; height: 18px; line-height: 18px; position: relative; width: 18px;"><svg aria-hidden="true" focusable="false" viewbox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71 0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71 0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76 0 5-2.24 5-5s-2.24-5-5-5z"></path></svg></span></span></span></div></div></div></div></div><div class="WaaZC" id="bkmrk-key-features-and-fun" style="color: rgb(10, 10, 10); font-family: 'Google Sans', Arial, sans-serif; font-size: 16px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;"><div aria-level="3" class="rPeykc uP58nb rWIipd" data-hveid="CA8QAQ" data-ved="2ahUKEwi6hsqr6IORAxUlUGwGHVU7GwcQo_EKegQIDxAB" role="heading" style="margin: 20px 0px 10px; font-size: 20px; font-weight: 600; line-height: 28px;"><span data-huuid="14638700321208958717">Key features and functionalities</span></div></div><div class="WaaZC" id="bkmrk-high-volume-sending%3A" style="color: rgb(10, 10, 10); font-family: 'Google Sans', Arial, sans-serif; font-size: 16px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;">- <div class="zMgcWd dSKvsb" data-il="" style="padding-bottom: 0px; padding-top: 0px; border-bottom: none;"><div data-crb-p=""><div class="xFTqob" style="flex: 1 1 0%; min-width: 0px;"><div class="Gur8Ad" style="font-size: 16px; font-weight: 500; line-height: 24px; overflow: hidden; padding-bottom: 4px; transition: transform 200ms cubic-bezier(0.2, 0, 0, 1); display: inline;"><span data-huuid="14638700321208958178">**High-volume sending:** </span></div><div class="vM0jzc" style="color: rgb(10, 10, 10); font-size: 16px; line-height: 24px; display: inline;"><span data-huuid="14638700321208956633">Engineered to handle and deliver a massive volume of emails per hour with high performance.<span class="pjBG2e" data-cid="edc70c07-6063-4e02-be4b-95d1889d8933"><span class="UV3uM" style="white-space: nowrap;"> </span></span></span><div class="NPrrbc" data-cid="edc70c07-6063-4e02-be4b-95d1889d8933" data-uuids="14638700321208958178,14638700321208956633" style="margin-inline-end: 6px; vertical-align: middle; display: inline-flex;"><div aria-label="View related links" class="BMebGe btku5b LwdV0e FR7ZSc OJeuxf" data-hveid="CB0QAQ" data-ved="2ahUKEwi6hsqr6IORAxUlUGwGHVU7GwcQ3fYKegQIHRAB" jsaction="KjsqPd" jsname="HtgYJd" role="button" style="display: inline-flex !important; vertical-align: middle; cursor: pointer; outline: 0px; -webkit-tap-highlight-color: transparent; color: rgb(28, 65, 154);" tabindex="0"><div class="niO4u" style="display: flex; justify-content: center; position: relative; align-items: center; width: 28px; z-index: 0; box-sizing: border-box; border-radius: 9999px; padding: 0px; border: 1px solid transparent; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: rgb(229, 237, 255) !important; height: 20px; margin: 0px auto; min-height: 20px;"><span class="TwMgNb Hkv2Pe" style="color: rgb(31, 31, 31) !important; background: unset !important; display: flex; align-items: center;"><span class="iPjmzb Sorfoc gNGSDf" style="display: flex; height: unset; rotate: 135deg;"><span class="z1asCe Sb7k4e" style="display: inline-block; fill: currentcolor; height: 18px; line-height: 18px; position: relative; width: 18px;"><svg aria-hidden="true" focusable="false" viewbox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71 0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71 0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76 0 5-2.24 5-5s-2.24-5-5-5z"></path></svg></span></span></span></div></div></div></div></div></div></div>

<div class="bsmXxe" id="bkmrk-advanced-deliverabil" role="none" style="display: contents;"><div class="zMgcWd dSKvsb" data-il="" style="padding-bottom: 0px; padding-top: 0px; border-bottom: none;"><div data-crb-p=""><div class="xFTqob" style="flex: 1 1 0%; min-width: 0px;"><div class="Gur8Ad" style="font-size: 16px; font-weight: 500; line-height: 24px; overflow: hidden; padding-bottom: 4px; transition: transform 200ms cubic-bezier(0.2, 0, 0, 1); display: inline;"><span data-huuid="14638700321208957639">**Advanced deliverability:** </span></div><div class="vM0jzc" style="color: rgb(10, 10, 10); font-size: 16px; line-height: 24px; display: inline;"><span data-huuid="14638700321208956094">Includes features to improve inbox placement, such as IP rotation to distribute load across multiple IP addresses and automated IP warming to build sender reputation.<span class="pjBG2e" data-cid="550ab3e2-f5d9-45b5-b853-ecab67033287"><span class="UV3uM" style="white-space: nowrap;"> </span></span></span><div class="NPrrbc" data-cid="550ab3e2-f5d9-45b5-b853-ecab67033287" data-uuids="14638700321208957639,14638700321208956094" style="margin-inline-end: 6px; vertical-align: middle; display: inline-flex;"><div aria-label="View related links" class="BMebGe btku5b LwdV0e FR7ZSc OJeuxf" data-hveid="CJABEAE" data-ved="2ahUKEwi6hsqr6IORAxUlUGwGHVU7GwcQ3fYKegUIkAEQAQ" jsaction="KjsqPd" jsname="HtgYJd" role="button" style="display: inline-flex !important; vertical-align: middle; cursor: pointer; outline: 0px; -webkit-tap-highlight-color: transparent; color: rgb(28, 65, 154);" tabindex="0"><div class="niO4u" style="display: flex; justify-content: center; position: relative; align-items: center; width: 28px; z-index: 0; box-sizing: border-box; border-radius: 9999px; padding: 0px; border: 1px solid transparent; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: rgb(229, 237, 255) !important; height: 20px; margin: 0px auto; min-height: 20px;"><span class="TwMgNb Hkv2Pe" style="color: rgb(31, 31, 31) !important; background: unset !important; display: flex; align-items: center;"><span class="iPjmzb Sorfoc gNGSDf" style="display: flex; height: unset; rotate: 135deg;"><span class="z1asCe Sb7k4e" style="display: inline-block; fill: currentcolor; height: 18px; line-height: 18px; position: relative; width: 18px;"><svg aria-hidden="true" focusable="false" viewbox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71 0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71 0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76 0 5-2.24 5-5s-2.24-5-5-5z"></path></svg></span></span></span></div></div></div></div></div></div></div></div><div class="bsmXxe" id="bkmrk-real-time-monitoring" role="none" style="display: contents;"><div class="zMgcWd dSKvsb" data-il="" style="padding-bottom: 0px; padding-top: 0px; border-bottom: none;"><div data-crb-p=""><div class="xFTqob" style="flex: 1 1 0%; min-width: 0px;"><div class="Gur8Ad" style="font-size: 16px; font-weight: 500; line-height: 24px; overflow: hidden; padding-bottom: 4px; transition: transform 200ms cubic-bezier(0.2, 0, 0, 1); display: inline;"><span data-huuid="14638700321208957100">**Real-time monitoring and analytics:** </span></div><div class="vM0jzc" style="color: rgb(10, 10, 10); font-size: 16px; line-height: 24px; display: inline;"><span data-huuid="14638700321208955555">Provides a centralized dashboard for real-time delivery tracking, bounce analysis, and performance monitoring, which helps in making data-driven decisions.<span class="pjBG2e" data-cid="62986e24-dd24-4a6c-9713-06a0bc1c49ea"><span class="UV3uM" style="white-space: nowrap;"> </span></span></span><div class="NPrrbc" data-cid="62986e24-dd24-4a6c-9713-06a0bc1c49ea" data-uuids="14638700321208957100,14638700321208955555" style="margin-inline-end: 6px; vertical-align: middle; display: inline-flex;"><div aria-label="View related links" class="BMebGe btku5b LwdV0e FR7ZSc OJeuxf" data-hveid="CIsBEAE" data-ved="2ahUKEwi6hsqr6IORAxUlUGwGHVU7GwcQ3fYKegUIiwEQAQ" jsaction="KjsqPd" jsname="HtgYJd" role="button" style="display: inline-flex !important; vertical-align: middle; cursor: pointer; outline: 0px; -webkit-tap-highlight-color: transparent; color: rgb(28, 65, 154);" tabindex="0"><div class="niO4u" style="display: flex; justify-content: center; position: relative; align-items: center; width: 28px; z-index: 0; box-sizing: border-box; border-radius: 9999px; padding: 0px; border: 1px solid transparent; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: rgb(229, 237, 255) !important; height: 20px; margin: 0px auto; min-height: 20px;"><span class="TwMgNb Hkv2Pe" style="color: rgb(31, 31, 31) !important; background: unset !important; display: flex; align-items: center;"><span class="iPjmzb Sorfoc gNGSDf" style="display: flex; height: unset; rotate: 135deg;"><span class="z1asCe Sb7k4e" style="display: inline-block; fill: currentcolor; height: 18px; line-height: 18px; position: relative; width: 18px;"><svg aria-hidden="true" focusable="false" viewbox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71 0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71 0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76 0 5-2.24 5-5s-2.24-5-5-5z"></path></svg></span></span></span></div></div></div></div></div></div></div></div><div class="bsmXxe" id="bkmrk-robust-configuration" role="none" style="display: contents;"><div class="zMgcWd dSKvsb" data-il="" style="padding-bottom: 0px; padding-top: 0px; border-bottom: none;"><div data-crb-p=""><div class="xFTqob" style="flex: 1 1 0%; min-width: 0px;"><div class="Gur8Ad" style="font-size: 16px; font-weight: 500; line-height: 24px; overflow: hidden; padding-bottom: 4px; transition: transform 200ms cubic-bezier(0.2, 0, 0, 1); display: inline;"><span data-huuid="14638700321208956561">**Robust configuration:** </span></div><div class="vM0jzc" style="color: rgb(10, 10, 10); font-size: 16px; line-height: 24px; display: inline;"><span data-huuid="14638700321208955016">Allows for granular control over sending policies, multiple domains, and other settings, with support for various security protocols like DKIM and SPF.<span class="pjBG2e" data-cid="24985997-2f39-4eb3-9268-86fe1b2cc82c"><span class="UV3uM" style="white-space: nowrap;"> </span></span></span><div class="NPrrbc" data-cid="24985997-2f39-4eb3-9268-86fe1b2cc82c" data-uuids="14638700321208956561,14638700321208955016" style="margin-inline-end: 6px; vertical-align: middle; display: inline-flex;"><div aria-label="View related links" class="BMebGe btku5b LwdV0e FR7ZSc OJeuxf" data-hveid="CJEBEAE" data-ved="2ahUKEwi6hsqr6IORAxUlUGwGHVU7GwcQ3fYKegUIkQEQAQ" jsaction="KjsqPd" jsname="HtgYJd" role="button" style="display: inline-flex !important; vertical-align: middle; cursor: pointer; outline: 0px; -webkit-tap-highlight-color: transparent; color: rgb(28, 65, 154);" tabindex="0"><div class="niO4u" style="display: flex; justify-content: center; position: relative; align-items: center; width: 28px; z-index: 0; box-sizing: border-box; border-radius: 9999px; padding: 0px; border: 1px solid transparent; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: rgb(229, 237, 255) !important; height: 20px; margin: 0px auto; min-height: 20px;"><span class="TwMgNb Hkv2Pe" style="color: rgb(31, 31, 31) !important; background: unset !important; display: flex; align-items: center;"><span class="iPjmzb Sorfoc gNGSDf" style="display: flex; height: unset; rotate: 135deg;"><span class="z1asCe Sb7k4e" style="display: inline-block; fill: currentcolor; height: 18px; line-height: 18px; position: relative; width: 18px;"><svg aria-hidden="true" focusable="false" viewbox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71 0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71 0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76 0 5-2.24 5-5s-2.24-5-5-5z"></path></svg></span></span></span></div></div></div></div></div></div></div></div><div class="bsmXxe" id="bkmrk-reliability-and-secu" role="none" style="display: contents;"><div class="zMgcWd dSKvsb" data-il="" style="padding-bottom: 0px; padding-top: 0px; border-bottom: none;"><div data-crb-p=""><div class="xFTqob" style="flex: 1 1 0%; min-width: 0px;"><div class="Gur8Ad" style="font-size: 16px; font-weight: 500; line-height: 24px; overflow: hidden; padding-bottom: 4px; transition: transform 200ms cubic-bezier(0.2, 0, 0, 1); display: inline;"><span data-huuid="14638700321208956022">**Reliability and security:** </span></div><div class="vM0jzc" style="color: rgb(10, 10, 10); font-size: 16px; line-height: 24px; display: inline;"><span data-huuid="14638700321208958573">Designed for enterprise-grade email communication, ensuring dependable and secure delivery and offering robust security measures</span></div></div></div></div></div></div>

# configuring and managing PowerMTA

<div class="Y3BBE" data-hveid="CAEQAA" data-processed="true" data-sfc-cp="" id="bkmrk-configuring-and-mana" jsaction="rcuQ6b:&k1DlKb_8|npT2md" jscontroller="zcfIf" jsuid="k1DlKb_8" style="font-family: 'Google Sans', Roboto, Arial, sans-serif; font-size: 16px; line-height: 24px; overflow-wrap: break-word; margin: 0px 0px 20px; color: rgb(10, 10, 10); font-weight: 400; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;">Configuring and managing PowerMTA involves installation, core configuration via the `config` file, setting up DNS records, and using the PowerMTA Management Console for monitoring and optimization. Key management tasks include monitoring performance, handling deliverability, and maintaining a good sender reputation by adhering to ISP best practices.<span class="uJ19be notranslate" data-wiz-uids="k1DlKb_b,k1DlKb_c,k1DlKb_d"><span class="vKEkVd" data-animation-atomic="" style="white-space: nowrap; position: relative;"> <button aria-label="View related links" class="rBl3me" data-amic="true" data-icl-uuid="56d9b08e-b607-490e-bdc3-8d7076283fdb" data-ved="2ahUKEwjU6OvQ54ORAxWTdmwGHa14GWEQye0OegQIARAB" data-wiz-attrbind="disabled=k1DlKb_b_C5gNJc;class=k1DlKb_b_UpSNec;" style="margin: 0px 6px 0px 0px; background: none 0% 0% / auto repeat scroll padding-box border-box rgb(229, 237, 255); border: none; border-radius: 10px; height: 20px; padding: 0px; width: 28px; position: relative; outline: 0px; cursor: pointer;" tabindex="0"><span class="wiMplc ofC0Ud" style="color: rgb(0, 29, 53); display: inline-block; transform: rotate(135deg);"><svg fill="currentColor" focusable="false" height="12px" style="margin-top: 3px;" viewbox="0 0 24 24" width="12px" xmlns="http://www.w3.org/2000/svg"><path d="M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71 0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71 0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76 0 5-2.24 5-5s-2.24-5-5-5z"></path></svg></span></button></span></span></div><div class="Y3BBE" data-hveid="CAIQAA" data-processed="true" data-sfc-cp="" id="bkmrk-you-can-watch-this-v" jsaction="rcuQ6b:&k1DlKb_l|npT2md" jscontroller="zcfIf" jsuid="k1DlKb_l" style="font-family: 'Google Sans', Roboto, Arial, sans-serif; font-size: 16px; line-height: 24px; overflow-wrap: break-word; margin: 10px 0px 20px; color: rgb(10, 10, 10); font-weight: 400; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;">You can watch this video to learn how to install and configure PowerMTA: <div data-processed="true" data-wiz-uids="k1DlKb_n,k1DlKb_o" jscontroller="uDeH3" jsuid="k1DlKb_m"><div data-processed="true"><div data-processed="true" data-ved="2ahUKEwjU6OvQ54ORAxWTdmwGHa14GWEQ-bUQegQIAhAB"><div class="Q2WBBe" data-processed="true" jsuid="k1DlKb_o" style="display: flex; flex-direction: column; background-color: rgb(243, 245, 246); margin-top: 12px; border-radius: 16px;"><div aria-label="" class="r0hyfc" data-animation-nesting="" data-processed="true" jsuid="k1DlKb_n" style="overflow: hidden; position: relative; border-radius: 16px 16px 0px 0px; width: 631.987px; height: 353.906px; outline: 0px;" tabindex="-1"><div class="RtAO3b" data-processed="true" data-sfc-cp="" data-wiz-uids="k1DlKb_q" jsaction="rcuQ6b:&k1DlKb_p|npT2md" jscallback="gfNXHe:&k1DlKb_m:U8wGUb" jscontroller="wMmv4c" jsuid="k1DlKb_p" style="width: 631.987px; height: 353.906px;"><div class="nrdPJf" data-processed="true" data-ved="2ahUKEwjU6OvQ54ORAxWTdmwGHa14GWEQtbEQegQIAhAC" jsaction="click:&k1DlKb_p|T2P31d" jsuid="k1DlKb_q" role="button" style="cursor: pointer; width: 631.987px; height: 353.906px; outline: 0px;" tabindex="0"><div class="n7j80c YkW4Kb" data-processed="true" jscontroller="ItMuwb" jsuid="k1DlKb_r" style="z-index: 2; border-radius: 100px; bottom: 12px; height: 4px; left: 12px; position: absolute; width: calc(100% - 24px); --segment-bar-offset: 12px;"><div class="llCCib" data-processed="true" style="transform: translateX(-50%); width: fit-content; align-items: center; background: none 0% 0% / auto repeat scroll padding-box border-box rgb(255, 255, 255); opacity: 0.85; border-radius: 100px; color: rgb(31, 31, 31); display: flex; flex-direction: row; font-size: 12px; gap: 4px; line-height: 1.33; padding: 2px 8px; position: absolute; top: -27px; white-space: nowrap; left: 75.9937px;"><svg fill="currentColor" height="12" viewbox="0 0 12 12" width="12" xmlns="http://www.w3.org/2000/svg"><path d="M3.5 2.7611V9.2386C3.5 9.77772 4.10085 10.0993 4.54942 9.80023L9.40755 6.56148C9.80832 6.2943 9.80832 5.70539 9.40755 5.43821L4.54942 2.19946C4.10085 1.90041 3.5 2.22198 3.5 2.7611Z"></path></svg><span data-processed="true">59s</span></div><div class="s3ITrd" data-processed="true" style="background: none 0% 0% / auto repeat scroll padding-box border-box rgb(255, 255, 255); opacity: 0.85; display: flex; height: 3.99375px; justify-content: center; position: absolute; z-index: 1; left: 12.15px; width: 127.669px;"><div class="PoLW7d" data-processed="true" style="position: absolute; border-left: 3.5px solid transparent; border-right: 3.5px solid transparent; border-top: 2.4px solid rgb(255, 255, 255); top: -7px;">  
</div></div></div><div class="dumoDb YkW4Kb" data-processed="true" style="z-index: 2; background: none 0% 0% / auto repeat scroll padding-box border-box rgba(0, 0, 0, 0.6); border-radius: 100px; cursor: pointer; position: absolute; right: 14px; top: 12px;"><div class="CaQWce" data-processed="true" jscontroller="sRLmTc" jsuid="k1DlKb_s" style="align-items: center; color: rgb(255, 255, 255); display: flex; height: 20px; justify-content: center; transform: rotate(45deg); width: 20px;"><svg fill="currentColor" height="18px" viewbox="0 -960 960 960" width="18px" xmlns="http://www.w3.org/2000/svg"><path d="M480-120 300-300l58-58 122 122 122-122 58 58-180 180ZM358-598l-58-58 180-180 180 180-58 58-122-122-122 122Z" fill="currentColor"></path></svg></div></div></div></div></div><div data-processed="true">[<div class="RhEuY" data-processed="true" style="display: flex; padding: 16px 12px 12px; gap: 8px; align-items: center;"><div class="SWvopd" data-processed="true" jscontroller="aNJZAb" jsuid="k1DlKb_t" style="height: fit-content; width: fit-content; margin-bottom: 2px; position: relative;"><div class="Lki2rc" data-processed="true" style="width: 20px; height: 20px; line-height: 20px;"><div aria-hidden="true" class="U9BD8 Wsaimf QyEYne" data-processed="true" jscontroller="Cky8Oc" jsuid="k1DlKb_u" style="width: 19.9875px; height: 19.9875px; line-height: 16px; display: flex; flex-shrink: 0; align-items: center; justify-content: center; overflow: hidden; background-color: rgb(255, 255, 255); border-radius: 50%;"></div></div><div class="JccCTc xG6cCf" data-processed="true" style="position: absolute; bottom: -4px; right: -4px; border-radius: 50%; line-height: 10px; padding: 2px; background-color: rgb(255, 255, 255); width: 10px; height: 10px;"><div aria-hidden="true" class="U9BD8 Wsaimf QyEYne" data-processed="true" jscontroller="Cky8Oc" jsuid="k1DlKb_v" style="width: 9.99375px; height: 9.99375px; line-height: 16px; display: flex; flex-shrink: 0; align-items: center; justify-content: center; overflow: hidden; background-color: rgb(255, 255, 255); border-radius: 50%;"></div></div></div><div data-processed="true"><div class="SrjfCd" data-processed="true" style="color: rgb(31, 31, 31); font-size: 12px; line-height: 16px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;">VktTech</div><div class="Pcl3Vd" data-processed="true" style="color: rgb(31, 31, 31); letter-spacing: 0px; font-size: 11px; line-height: 13px;">YouTube • 23 Feb 2024</div></div></div>](https://www.youtube.com/watch?v=x33Iv1RCQMI&t=5)</div></div></div></div></div></div><div class="Fsg96" data-processed="true" data-sfc-cp="" id="bkmrk-" jsaction="rcuQ6b:&k1DlKb_w|npT2md" jscontroller="KHhJQ" jsuid="k1DlKb_w" style="color: rgb(10, 10, 10); font-family: 'Google Sans', Roboto, Arial, sans-serif; font-size: 16px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;">  
</div><div aria-level="3" class="otQkpb" data-animation-nesting="" data-processed="true" data-sfc-cp="" id="bkmrk-1.-installation-and-" jscontroller="a7qCn" jsuid="k1DlKb_x" role="heading" style="color: rgb(10, 10, 10); font-family: 'Google Sans', Roboto, Arial, sans-serif; font-size: 20px; line-height: 28px; font-weight: 600; margin: 20px 0px 10px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;">1. Installation and initial setup<span class="txxDge notranslate" data-processed="true" data-wiz-uids="k1DlKb_y,k1DlKb_z,k1DlKb_10" style="visibility: hidden;"><span class="vKEkVd" data-animation-atomic="" data-processed="true" style="white-space: nowrap; position: relative;"><button aria-label="View related links" class="rBl3me" data-amic="true" data-icl-uuid="68fc1b41-f785-4531-9bce-f1732fc408c8" data-processed="true" data-ved="2ahUKEwjU6OvQ54ORAxWTdmwGHa14GWEQye0OegQIAxAA" data-wiz-attrbind="disabled=k1DlKb_y_C5gNJc;class=k1DlKb_y_UpSNec;" style="margin: 0px 6px 0px 0px; background: none 0% 0% / auto repeat scroll padding-box border-box rgb(229, 237, 255); border: none; border-radius: 10px; height: 20px; padding: 0px; width: 28px; position: relative; outline: 0px; cursor: pointer;" tabindex="0"><span class="wiMplc ofC0Ud" data-processed="true" style="color: rgb(0, 29, 53); display: inline-block; transform: rotate(135deg);"><svg fill="currentColor" focusable="false" height="12px" style="margin-top: 3px;" viewbox="0 0 24 24" width="12px" xmlns="http://www.w3.org/2000/svg"><path d="M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71 0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71 0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76 0 5-2.24 5-5s-2.24-5-5-5z"></path></svg></span></button></span></span></div>- <span class="T286Pc" data-processed="true" data-sfc-cp="" style="overflow-wrap: break-word;">**Install PowerMTA:** Download and install PowerMTA on your server. This will likely involve running the installer (e.g., the `pmta.msi` on Windows).</span>
- <span class="T286Pc" data-processed="true" data-sfc-cp="" style="overflow-wrap: break-word;">**Copy license file:** Copy your license file (e.g., `license.dat`) to the PowerMTA installation directory.</span>
- <span class="T286Pc" data-processed="true" data-sfc-cp="" style="overflow-wrap: break-word;">**Connect to your server:** Use an SSH client like PuTTY to connect to your server.</span>
- <span class="T286Pc" data-processed="true" data-sfc-cp="" style="overflow-wrap: break-word;">**Set up dependencies:** Ensure all required software and dependencies are installed.</span>
- <span class="T286Pc" data-processed="true" data-sfc-cp="" style="overflow-wrap: break-word;">**Check port 25:** Verify that port 25 (or your chosen port) is not blocked by your cloud provider, as this is crucial for sending emails.</span><span class="uJ19be notranslate" data-processed="true" data-wiz-uids="k1DlKb_1j,k1DlKb_1k,k1DlKb_1l"><span class="vKEkVd" data-animation-atomic="" data-processed="true" style="white-space: nowrap; position: relative;"> <button aria-label="View related links" class="rBl3me" data-amic="true" data-icl-uuid="49b2687a-6f79-4f1c-8693-8e5a21cde5e8" data-processed="true" data-ved="2ahUKEwjU6OvQ54ORAxWTdmwGHa14GWEQye0OegQIBBAF" data-wiz-attrbind="disabled=k1DlKb_1j_C5gNJc;class=k1DlKb_1j_UpSNec;" style="margin: 0px 6px 0px 0px; background: none 0% 0% / auto repeat scroll padding-box border-box rgb(229, 237, 255); border: none; border-radius: 10px; height: 20px; padding: 0px; width: 28px; position: relative; outline: 0px; cursor: pointer;" tabindex="0"><span class="wiMplc ofC0Ud" data-processed="true" style="color: rgb(0, 29, 53); display: inline-block; transform: rotate(135deg);"><svg fill="currentColor" focusable="false" height="12px" style="margin-top: 3px;" viewbox="0 0 24 24" width="12px" xmlns="http://www.w3.org/2000/svg"><path d="M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71 0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71 0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76 0 5-2.24 5-5s-2.24-5-5-5z"></path></svg></span></button></span></span>

<div class="Fsg96" data-processed="true" data-sfc-cp="" id="bkmrk--1" jsaction="rcuQ6b:&k1DlKb_1r|npT2md" jscontroller="KHhJQ" jsuid="k1DlKb_1r" style="color: rgb(10, 10, 10); font-family: 'Google Sans', Roboto, Arial, sans-serif; font-size: 16px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;">  
</div><div aria-level="3" class="otQkpb" data-animation-nesting="" data-processed="true" data-sfc-cp="" id="bkmrk-2.-core-configuratio" jscontroller="a7qCn" jsuid="k1DlKb_1s" role="heading" style="color: rgb(10, 10, 10); font-family: 'Google Sans', Roboto, Arial, sans-serif; font-size: 20px; line-height: 28px; font-weight: 600; margin: 20px 0px 10px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;">2. Core configuration<span class="txxDge notranslate" data-processed="true" data-wiz-uids="k1DlKb_1t,k1DlKb_1u,k1DlKb_1v" style="visibility: hidden;"><span class="vKEkVd" data-animation-atomic="" data-processed="true" style="white-space: nowrap; position: relative;"><button aria-label="View related links" class="rBl3me" data-amic="true" data-icl-uuid="efdd4e73-557f-41ae-9c7c-e581e48029c4" data-processed="true" data-ved="2ahUKEwjU6OvQ54ORAxWTdmwGHa14GWEQye0OegQIBRAA" data-wiz-attrbind="disabled=k1DlKb_1t_C5gNJc;class=k1DlKb_1t_UpSNec;" style="margin: 0px 6px 0px 0px; background: none 0% 0% / auto repeat scroll padding-box border-box rgb(229, 237, 255); border: none; border-radius: 10px; height: 20px; padding: 0px; width: 28px; position: relative; outline: 0px; cursor: pointer;" tabindex="0"><span class="wiMplc ofC0Ud" data-processed="true" style="color: rgb(0, 29, 53); display: inline-block; transform: rotate(135deg);"><svg fill="currentColor" focusable="false" height="12px" style="margin-top: 3px;" viewbox="0 0 24 24" width="12px" xmlns="http://www.w3.org/2000/svg"><path d="M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71 0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71 0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76 0 5-2.24 5-5s-2.24-5-5-5z"></path></svg></span></button></span></span></div>- <span class="T286Pc" data-processed="true" data-sfc-cp="" style="overflow-wrap: break-word;">**Edit the configuration file:** The main configuration file is usually located at `/etc/pmta/config` (or similar). You can use a text editor like `Notepad` or `vim` to edit it.</span>
- <span class="T286Pc" data-processed="true" data-sfc-cp="" style="overflow-wrap: break-word;">**Configure basic settings:** Update the file with your server's IP addresses, domain names, and authentication methods.</span>
- <span class="T286Pc" data-processed="true" data-sfc-cp="" style="overflow-wrap: break-word;">**Implement sender authentication:** Set up SPF, DKIM, and DMARC records in your DNS to verify your sender authenticity.</span>
- <span class="T286Pc" data-processed="true" data-sfc-cp="" style="overflow-wrap: break-word;">**Configure directives:** Set up domain-specific configurations or use macros to simplify settings for large numbers of domains.</span>
- <span class="T286Pc" data-processed="true" data-sfc-cp="" style="overflow-wrap: break-word;">**Apply management principles:** Follow best practices like the DRY principle ("Don't Repeat Yourself") to keep configurations clean and manageable, especially when managing multiple domains or customers, as shown in <span data-processed="true">[this Slideshare document](https://www.slideshare.net/slideshow/zen-the-art-of-powermta-maintenance/122342486)</span> and <span data-processed="true">[this CircleID article](https://circleid.com/posts/20151102_five_essential_powermta_configuration_tips)</span>.</span><span class="uJ19be notranslate" data-processed="true" data-wiz-uids="k1DlKb_34,k1DlKb_35,k1DlKb_36"><span class="vKEkVd" data-animation-atomic="" data-processed="true" style="white-space: nowrap; position: relative;"> <button aria-label="View related links" class="rBl3me" data-amic="true" data-icl-uuid="d9225395-4776-4ca9-ba7b-1a9f408f592c" data-processed="true" data-ved="2ahUKEwjU6OvQ54ORAxWTdmwGHa14GWEQye0OegQIBxAH" data-wiz-attrbind="disabled=k1DlKb_34_C5gNJc;class=k1DlKb_34_UpSNec;" style="margin: 0px 6px 0px 0px; background: none 0% 0% / auto repeat scroll padding-box border-box rgb(229, 237, 255); border: none; border-radius: 10px; height: 20px; padding: 0px; width: 28px; position: relative; outline: 0px; cursor: pointer;" tabindex="0"><span class="wiMplc ofC0Ud" data-processed="true" style="color: rgb(0, 29, 53); display: inline-block; transform: rotate(135deg);"><svg fill="currentColor" focusable="false" height="12px" style="margin-top: 3px;" viewbox="0 0 24 24" width="12px" xmlns="http://www.w3.org/2000/svg"><path d="M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71 0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71 0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76 0 5-2.24 5-5s-2.24-5-5-5z"></path></svg></span></button></span></span>

<div class="Y3BBE" data-hveid="CAgQAA" data-processed="true" data-sfc-cp="" id="bkmrk-this-video-explains-" jsaction="rcuQ6b:&k1DlKb_3e|npT2md" jscontroller="zcfIf" jsuid="k1DlKb_3e" style="font-family: 'Google Sans', Roboto, Arial, sans-serif; font-size: 16px; line-height: 24px; overflow-wrap: break-word; margin: 10px 0px 20px; color: rgb(10, 10, 10); font-weight: 400; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;">This video explains how to set up the configuration file and DNS: <div data-processed="true" data-wiz-uids="k1DlKb_3g,k1DlKb_3h" jscontroller="uDeH3" jsuid="k1DlKb_3f"><div data-processed="true"><div data-processed="true" data-ved="2ahUKEwjU6OvQ54ORAxWTdmwGHa14GWEQ-bUQegQICBAB"><div class="Q2WBBe" data-processed="true" jsuid="k1DlKb_3h" style="display: flex; flex-direction: column; background-color: rgb(243, 245, 246); margin-top: 12px; border-radius: 16px;"><div aria-label="" class="r0hyfc" data-animation-nesting="" data-processed="true" jsuid="k1DlKb_3g" style="overflow: hidden; position: relative; border-radius: 16px 16px 0px 0px; width: 631.987px; height: 353.906px; outline: 0px;" tabindex="-1"><div class="RtAO3b" data-processed="true" data-sfc-cp="" data-wiz-uids="k1DlKb_3j" jsaction="rcuQ6b:&k1DlKb_3i|npT2md" jscallback="gfNXHe:&k1DlKb_3f:U8wGUb" jscontroller="wMmv4c" jsuid="k1DlKb_3i" style="width: 631.987px; height: 353.906px;"><div class="nrdPJf" data-processed="true" data-ved="2ahUKEwjU6OvQ54ORAxWTdmwGHa14GWEQtbEQegQICBAC" jsaction="click:&k1DlKb_3i|T2P31d" jsuid="k1DlKb_3j" role="button" style="cursor: pointer; width: 631.987px; height: 353.906px; outline: 0px;" tabindex="0"><div class="n7j80c YkW4Kb" data-processed="true" jscontroller="ItMuwb" jsuid="k1DlKb_3k" style="z-index: 2; border-radius: 100px; bottom: 12px; height: 4px; left: 12px; position: absolute; width: calc(100% - 24px); --segment-bar-offset: 12px;"><div class="llCCib" data-processed="true" style="transform: translateX(-50%); width: fit-content; align-items: center; background: none 0% 0% / auto repeat scroll padding-box border-box rgb(255, 255, 255); opacity: 0.85; border-radius: 100px; color: rgb(31, 31, 31); display: flex; flex-direction: row; font-size: 12px; gap: 4px; line-height: 1.33; padding: 2px 8px; position: absolute; top: -27px; white-space: nowrap; left: 325.256px;"><svg fill="currentColor" height="12" viewbox="0 0 12 12" width="12" xmlns="http://www.w3.org/2000/svg"><path d="M3.5 2.7611V9.2386C3.5 9.77772 4.10085 10.0993 4.54942 9.80023L9.40755 6.56148C9.80832 6.2943 9.80832 5.70539 9.40755 5.43821L4.54942 2.19946C4.10085 1.90041 3.5 2.22198 3.5 2.7611Z"></path></svg><span data-processed="true">59s</span></div><div class="s3ITrd" data-processed="true" style="background: none 0% 0% / auto repeat scroll padding-box border-box rgb(255, 255, 255); opacity: 0.85; display: flex; height: 3.99375px; justify-content: center; position: absolute; z-index: 1; left: 291.825px; width: 66.8625px;"><div class="PoLW7d" data-processed="true" style="position: absolute; border-left: 3.5px solid transparent; border-right: 3.5px solid transparent; border-top: 2.4px solid rgb(255, 255, 255); top: -7px;">  
</div></div></div><div class="dumoDb YkW4Kb" data-processed="true" style="z-index: 2; background: none 0% 0% / auto repeat scroll padding-box border-box rgba(0, 0, 0, 0.6); border-radius: 100px; cursor: pointer; position: absolute; right: 14px; top: 12px;"><div class="CaQWce" data-processed="true" jscontroller="sRLmTc" jsuid="k1DlKb_3l" style="align-items: center; color: rgb(255, 255, 255); display: flex; height: 20px; justify-content: center; transform: rotate(45deg); width: 20px;"><svg fill="currentColor" height="18px" viewbox="0 -960 960 960" width="18px" xmlns="http://www.w3.org/2000/svg"><path d="M480-120 300-300l58-58 122 122 122-122 58 58-180 180ZM358-598l-58-58 180-180 180 180-58 58-122-122-122 122Z" fill="currentColor"></path></svg></div></div><div class="AJ10sd" data-processed="true" data-signal-inputs="RMdumc=uDeH3/TVP8Qe" data-ved="2ahUKEwjU6OvQ54ORAxWTdmwGHa14GWEQz_MQegQICBAD" data-wiz-uids="k1DlKb_3m,k1DlKb_3n" jsaction="rcuQ6b:&k1DlKb_3m|npT2md" jscontroller="oi1tWc" jsuid="k1DlKb_3m" style="position: absolute; inset: 0px; z-index: 1;"><video class="OjJwgf" data-processed="true" loop="loop" muted="" preload="none" src="https://encrypted-vtbn1.gstatic.com/video?q=tbn:ANd9GcSHIRn_w6kcQuO7r_9gslT7c-aKR4ZTqpRQ3WXCsG0PZwdujGpC" style="width: 631.987px; height: 353.906px; object-fit: cover; opacity: 0; transition: opacity 0.2s ease-in-out;"></video></div></div></div></div><div data-processed="true">[<div class="RhEuY" data-processed="true" style="display: flex; padding: 16px 12px 12px; gap: 8px; align-items: center;"><div class="SWvopd" data-processed="true" jscontroller="aNJZAb" jsuid="k1DlKb_3o" style="height: fit-content; width: fit-content; margin-bottom: 2px; position: relative;"><div class="Lki2rc" data-processed="true" style="width: 20px; height: 20px; line-height: 20px;"><div aria-hidden="true" class="U9BD8 Wsaimf QyEYne" data-processed="true" jscontroller="Cky8Oc" jsuid="k1DlKb_3p" style="width: 19.9875px; height: 19.9875px; line-height: 16px; display: flex; flex-shrink: 0; align-items: center; justify-content: center; overflow: hidden; background-color: rgb(255, 255, 255); border-radius: 50%;"></div></div><div class="JccCTc xG6cCf" data-processed="true" style="position: absolute; bottom: -4px; right: -4px; border-radius: 50%; line-height: 10px; padding: 2px; background-color: rgb(255, 255, 255); width: 10px; height: 10px;"><div aria-hidden="true" class="U9BD8 Wsaimf QyEYne" data-processed="true" jscontroller="Cky8Oc" jsuid="k1DlKb_3q" style="width: 9.99375px; height: 9.99375px; line-height: 16px; display: flex; flex-shrink: 0; align-items: center; justify-content: center; overflow: hidden; background-color: rgb(255, 255, 255); border-radius: 50%;"></div></div></div><div data-processed="true"><div class="SrjfCd" data-processed="true" style="color: rgb(31, 31, 31); font-size: 12px; line-height: 16px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;">Tool Helper</div><div class="Pcl3Vd" data-processed="true" style="color: rgb(31, 31, 31); letter-spacing: 0px; font-size: 11px; line-height: 13px;">YouTube • 14 May 2025</div></div></div>](https://www.youtube.com/watch?v=Kgb1ubxsy1k&t=247)</div></div></div></div></div></div><div class="Fsg96" data-processed="true" data-sfc-cp="" id="bkmrk--2" jsaction="rcuQ6b:&k1DlKb_3r|npT2md" jscontroller="KHhJQ" jsuid="k1DlKb_3r" style="color: rgb(10, 10, 10); font-family: 'Google Sans', Roboto, Arial, sans-serif; font-size: 16px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;">  
</div><div aria-level="3" class="otQkpb" data-animation-nesting="" data-processed="true" data-sfc-cp="" id="bkmrk-3.-management-and-mo" jscontroller="a7qCn" jsuid="k1DlKb_3s" role="heading" style="color: rgb(10, 10, 10); font-family: 'Google Sans', Roboto, Arial, sans-serif; font-size: 20px; line-height: 28px; font-weight: 600; margin: 20px 0px 10px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;">3. Management and monitoring<span class="txxDge notranslate" data-processed="true" data-wiz-uids="k1DlKb_3t,k1DlKb_3u,k1DlKb_3v" style="visibility: hidden;"><span class="vKEkVd" data-animation-atomic="" data-processed="true" style="white-space: nowrap; position: relative;"><button aria-label="View related links" class="rBl3me" data-amic="true" data-icl-uuid="df104b8f-2e6f-4f23-a23a-d35df9f3a38c" data-processed="true" data-ved="2ahUKEwjU6OvQ54ORAxWTdmwGHa14GWEQye0OegQICRAA" data-wiz-attrbind="disabled=k1DlKb_3t_C5gNJc;class=k1DlKb_3t_UpSNec;" style="margin: 0px 6px 0px 0px; background: none 0% 0% / auto repeat scroll padding-box border-box rgb(229, 237, 255); border: none; border-radius: 10px; height: 20px; padding: 0px; width: 28px; position: relative; outline: 0px; cursor: pointer;" tabindex="0"><span class="wiMplc ofC0Ud" data-processed="true" style="color: rgb(0, 29, 53); display: inline-block; transform: rotate(135deg);"><svg fill="currentColor" focusable="false" height="12px" style="margin-top: 3px;" viewbox="0 0 24 24" width="12px" xmlns="http://www.w3.org/2000/svg"><path d="M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71 0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71 0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76 0 5-2.24 5-5s-2.24-5-5-5z"></path></svg></span></button></span></span></div>- <span class="T286Pc" data-processed="true" data-sfc-cp="" style="overflow-wrap: break-word;">**Restart the service:** After making configuration changes, restart the PowerMTA service to apply them. The command is typically `service pmta restart`.</span>
- <span class="T286Pc" data-processed="true" data-sfc-cp="" style="overflow-wrap: break-word;">**Use the Management Console:** Access the PowerMTA Management Console (PMC) by running the necessary commands to enable the console and the port (usually 1983). The console provides a web-based interface for detailed monitoring and management.</span>
- <span class="T286Pc" data-processed="true" data-sfc-cp="" style="overflow-wrap: break-word;">**Monitor performance:** Continuously monitor your server's performance and deliverability.</span>
- <span class="T286Pc" data-processed="true" data-sfc-cp="" style="overflow-wrap: break-word;">**Manage reputation:** Proactively manage your sending reputation by monitoring feedback and addressing issues to avoid blacklisting.</span>
- <span class="T286Pc" data-processed="true" data-sfc-cp="" style="overflow-wrap: break-word;">**Maintain list quality:** Use email verification tools to clean your lists and avoid sending to invalid addresses</span>

# imap server

<div class="Y3BBE" data-hveid="CAEQAA" data-processed="true" data-sfc-cp="" id="bkmrk-an-imap-%28internet-me" jsaction="rcuQ6b:&mXmM7_7|npT2md" jscontroller="zcfIf" jsuid="mXmM7_7" style="font-family: 'Google Sans', Roboto, Arial, sans-serif; font-size: 16px; line-height: 24px; overflow-wrap: break-word; margin: 0px 0px 20px; color: rgb(10, 10, 10); font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;">An IMAP (Internet Message Access Protocol) server stores emails on a central server, enabling seamless access and synchronization across multiple devices (phone, computer, tablet). Key points are <mark class="HxTRcb" data-processed="true" style="color: rgb(0, 29, 53); border-radius: 4px; background: linear-gradient(90deg, rgb(211, 227, 253) 50%, rgba(0, 0, 0, 0) 50%) 75% 0px / 200% 100% no-repeat scroll padding-box border-box rgba(0, 0, 0, 0); padding: 0px 2px; font-weight: 500; animation: 0.75s cubic-bezier(0.05, 0.7, 0.1, 1) 0.25s 1 normal forwards running highlight-animation;">server-based storage, real-time syncing of actions (read, delete, move), efficient partial downloads (headers first), folder management, and strong security via SSL/TLS</mark>, making it ideal for modern multi-device users, unlike older POP protocols.<span class="uJ19be notranslate" data-processed="true" data-wiz-uids="mXmM7_e,mXmM7_f,mXmM7_g"><span class="vKEkVd" data-animation-atomic="" data-processed="true" data-wiz-attrbind="class=mXmM7_e/TKHnVd;" style="white-space: nowrap; position: relative;"> <button aria-label="View related links" class="rBl3me" data-amic="true" data-icl-uuid="71308f4b-d3f3-4658-a3b1-9c294b0850aa" data-processed="true" data-ved="2ahUKEwiJ88TyyriRAxX4c_UHHfNaESMQye0OegQIARAE" data-wiz-attrbind="disabled=mXmM7_e/C5gNJc;class=mXmM7_e/UpSNec;" style="margin: 0px 6px 0px 0px; background: none 0% 0% / auto repeat scroll padding-box border-box rgb(229, 237, 255); border: none; border-radius: 10px; height: 20px; padding: 0px; width: 28px; position: relative; outline: 0px; cursor: pointer;" tabindex="0"><span class="wiMplc ofC0Ud" data-processed="true" style="color: rgb(0, 29, 53); display: inline-block; transform: rotate(135deg);"><svg fill="currentColor" focusable="false" height="12px" style="margin-top: 3px;" viewbox="0 0 24 24" width="12px" xmlns="http://www.w3.org/2000/svg"><path d="M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71 0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71 0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76 0 5-2.24 5-5s-2.24-5-5-5z"></path></svg></span></button></span></span></div><div class="Fsg96" data-processed="true" data-sfc-cp="" id="bkmrk-" jsaction="rcuQ6b:&mXmM7_l|npT2md" jscontroller="KHhJQ" jsuid="mXmM7_l" style="color: rgb(10, 10, 10); font-family: 'Google Sans', Roboto, Arial, sans-serif; font-size: 16px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;">  
</div><div aria-level="3" class="otQkpb" data-animation-nesting="" data-processed="true" data-sfc-cp="" id="bkmrk-key-features" jscontroller="a7qCn" jsuid="mXmM7_m" role="heading" style="color: rgb(0, 29, 53); font-family: 'Google Sans', Roboto, Arial, sans-serif; font-size: 20px; line-height: 28px; margin: 20px 0px 10px; font-weight: 600; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;">Key Features<span class="txxDge notranslate" data-processed="true" data-wiz-uids="mXmM7_n,mXmM7_o,mXmM7_p" style="visibility: hidden;"><span class="vKEkVd" data-animation-atomic="" data-processed="true" data-wiz-attrbind="class=mXmM7_n/TKHnVd;" style="white-space: nowrap; position: relative;"><button aria-label="View related links" class="rBl3me" data-amic="true" data-icl-uuid="001583bc-8193-4dd4-a068-cb49516405da" data-processed="true" data-ved="2ahUKEwiJ88TyyriRAxX4c_UHHfNaESMQye0OegQIAhAA" data-wiz-attrbind="disabled=mXmM7_n/C5gNJc;class=mXmM7_n/UpSNec;" style="margin: 0px 6px 0px 0px; background: none 0% 0% / auto repeat scroll padding-box border-box rgb(229, 237, 255); border: none; border-radius: 10px; height: 20px; padding: 0px; width: 28px; position: relative; outline: 0px; cursor: pointer;" tabindex="0"><span class="wiMplc ofC0Ud" data-processed="true" style="color: rgb(0, 29, 53); display: inline-block; transform: rotate(135deg);"><svg fill="currentColor" focusable="false" height="12px" style="margin-top: 3px;" viewbox="0 0 24 24" width="12px" xmlns="http://www.w3.org/2000/svg"><path d="M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71 0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71 0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76 0 5-2.24 5-5s-2.24-5-5-5z"></path></svg></span></button></span></span></div>- <span class="T286Pc" data-processed="true" data-sfc-cp="" style="overflow-wrap: break-word;">**Multi-Device Sync:** All changes (read, unread, moved) are mirrored across all connected devices because mail stays on the server.</span>
- <span class="T286Pc" data-processed="true" data-sfc-cp="" style="overflow-wrap: break-word;">**[Server-Side Storage](https://www.google.com/search?q=Server-Side+Storage&sca_esv=f0158aba78c19323&sxsrf=AE3TifPyUBJsX_IQ770bVmpPR5Rpuai7Lw%3A1765560892046&ei=PFI8ad7OAobCvr0PlprVmQ4&oq=some+main+points+about+IMAP+&gs_lp=Egxnd3Mtd2l6LXNlcnAiHHNvbWUgbWFpbiBwb2ludHMgYWJvdXQgSU1BUCAqAggAMgUQIRigATIFECEYnwUyBRAhGJ8FMgUQIRifBTIFECEYnwUyBRAhGJ8FMgUQIRifBTIFECEYnwUyBRAhGJ8FMgUQIRifBUjBL1CwCFicHHACeAGQAQCYAfwBoAHPCaoBBTAuMi40uAEDyAEA-AEBmAIIoAL0CsICChAAGLADGNYEGEfCAgsQABiABBiRAhiKBcICBRAAGIAEwgIGEAAYFhgewgILEAAYgAQYhgMYigXCAggQABiABBiiBJgDAIgGAZAGCJIHBTIuMi40oAf_K7IHBTAuMi40uAfPCsIHBTMtNy4xyAd2gAgA&sclient=gws-wiz-serp&mstk=AUtExfBjVVIxMTO_nIeko1h1d442KPwwqbQhKVr7-LWo0qWTdUqfTQRhenipUGxDSz7cjfAzZj6361DyjnUUEPHCJa4SyyKwSP3ly0_o0qE8IltN763ecamxkX2jPwOUT_xYMaZvZBlALQt6kWswkruJZni_JQLszGkiPM17nY_8FybdZn1XlCSbnP6xBvO3sH-taU1P7BJfFqIaktzGZVLSL0bUFq2Q0uI24QpxyuQDrwj8UwIUzQbey4tezO4zzNbuzUebFRsWtvSVyleh4aGmvNkZWvxKOz5HCc1uQFSksTAFXw&csui=3&ved=2ahUKEwiJ88TyyriRAxX4c_UHHfNaESMQgK4QegQIAxAC):** Emails are kept on the server, not just downloaded to one device, preserving your mailbox across platforms.</span>
- <span class="T286Pc" data-processed="true" data-sfc-cp="" style="overflow-wrap: break-word;">**[Partial Downloads](https://www.google.com/search?q=Partial+Downloads&sca_esv=f0158aba78c19323&sxsrf=AE3TifPyUBJsX_IQ770bVmpPR5Rpuai7Lw%3A1765560892046&ei=PFI8ad7OAobCvr0PlprVmQ4&oq=some+main+points+about+IMAP+&gs_lp=Egxnd3Mtd2l6LXNlcnAiHHNvbWUgbWFpbiBwb2ludHMgYWJvdXQgSU1BUCAqAggAMgUQIRigATIFECEYnwUyBRAhGJ8FMgUQIRifBTIFECEYnwUyBRAhGJ8FMgUQIRifBTIFECEYnwUyBRAhGJ8FMgUQIRifBUjBL1CwCFicHHACeAGQAQCYAfwBoAHPCaoBBTAuMi40uAEDyAEA-AEBmAIIoAL0CsICChAAGLADGNYEGEfCAgsQABiABBiRAhiKBcICBRAAGIAEwgIGEAAYFhgewgILEAAYgAQYhgMYigXCAggQABiABBiiBJgDAIgGAZAGCJIHBTIuMi40oAf_K7IHBTAuMi40uAfPCsIHBTMtNy4xyAd2gAgA&sclient=gws-wiz-serp&mstk=AUtExfBjVVIxMTO_nIeko1h1d442KPwwqbQhKVr7-LWo0qWTdUqfTQRhenipUGxDSz7cjfAzZj6361DyjnUUEPHCJa4SyyKwSP3ly0_o0qE8IltN763ecamxkX2jPwOUT_xYMaZvZBlALQt6kWswkruJZni_JQLszGkiPM17nY_8FybdZn1XlCSbnP6xBvO3sH-taU1P7BJfFqIaktzGZVLSL0bUFq2Q0uI24QpxyuQDrwj8UwIUzQbey4tezO4zzNbuzUebFRsWtvSVyleh4aGmvNkZWvxKOz5HCc1uQFSksTAFXw&csui=3&ved=2ahUKEwiJ88TyyriRAxX4c_UHHfNaESMQgK4QegQIAxAE):** Downloads only email headers initially, then message bodies/attachments when clicked, saving bandwidth and speeding up access.</span>
- <span class="T286Pc" data-processed="true" data-sfc-cp="" style="overflow-wrap: break-word;">**[Folder Management](https://www.google.com/search?q=Folder+Management&sca_esv=f0158aba78c19323&sxsrf=AE3TifPyUBJsX_IQ770bVmpPR5Rpuai7Lw%3A1765560892046&ei=PFI8ad7OAobCvr0PlprVmQ4&oq=some+main+points+about+IMAP+&gs_lp=Egxnd3Mtd2l6LXNlcnAiHHNvbWUgbWFpbiBwb2ludHMgYWJvdXQgSU1BUCAqAggAMgUQIRigATIFECEYnwUyBRAhGJ8FMgUQIRifBTIFECEYnwUyBRAhGJ8FMgUQIRifBTIFECEYnwUyBRAhGJ8FMgUQIRifBUjBL1CwCFicHHACeAGQAQCYAfwBoAHPCaoBBTAuMi40uAEDyAEA-AEBmAIIoAL0CsICChAAGLADGNYEGEfCAgsQABiABBiRAhiKBcICBRAAGIAEwgIGEAAYFhgewgILEAAYgAQYhgMYigXCAggQABiABBiiBJgDAIgGAZAGCJIHBTIuMi40oAf_K7IHBTAuMi40uAfPCsIHBTMtNy4xyAd2gAgA&sclient=gws-wiz-serp&mstk=AUtExfBjVVIxMTO_nIeko1h1d442KPwwqbQhKVr7-LWo0qWTdUqfTQRhenipUGxDSz7cjfAzZj6361DyjnUUEPHCJa4SyyKwSP3ly0_o0qE8IltN763ecamxkX2jPwOUT_xYMaZvZBlALQt6kWswkruJZni_JQLszGkiPM17nY_8FybdZn1XlCSbnP6xBvO3sH-taU1P7BJfFqIaktzGZVLSL0bUFq2Q0uI24QpxyuQDrwj8UwIUzQbey4tezO4zzNbuzUebFRsWtvSVyleh4aGmvNkZWvxKOz5HCc1uQFSksTAFXw&csui=3&ved=2ahUKEwiJ88TyyriRAxX4c_UHHfNaESMQgK4QegQIAxAG):** Supports creating, deleting, and syncing folders on the server.</span>
- <span class="T286Pc" data-processed="true" data-sfc-cp="" style="overflow-wrap: break-word;">**[Simultaneous Access](https://www.google.com/search?q=Simultaneous+Access&sca_esv=f0158aba78c19323&sxsrf=AE3TifPyUBJsX_IQ770bVmpPR5Rpuai7Lw%3A1765560892046&ei=PFI8ad7OAobCvr0PlprVmQ4&oq=some+main+points+about+IMAP+&gs_lp=Egxnd3Mtd2l6LXNlcnAiHHNvbWUgbWFpbiBwb2ludHMgYWJvdXQgSU1BUCAqAggAMgUQIRigATIFECEYnwUyBRAhGJ8FMgUQIRifBTIFECEYnwUyBRAhGJ8FMgUQIRifBTIFECEYnwUyBRAhGJ8FMgUQIRifBUjBL1CwCFicHHACeAGQAQCYAfwBoAHPCaoBBTAuMi40uAEDyAEA-AEBmAIIoAL0CsICChAAGLADGNYEGEfCAgsQABiABBiRAhiKBcICBRAAGIAEwgIGEAAYFhgewgILEAAYgAQYhgMYigXCAggQABiABBiiBJgDAIgGAZAGCJIHBTIuMi40oAf_K7IHBTAuMi40uAfPCsIHBTMtNy4xyAd2gAgA&sclient=gws-wiz-serp&mstk=AUtExfBjVVIxMTO_nIeko1h1d442KPwwqbQhKVr7-LWo0qWTdUqfTQRhenipUGxDSz7cjfAzZj6361DyjnUUEPHCJa4SyyKwSP3ly0_o0qE8IltN763ecamxkX2jPwOUT_xYMaZvZBlALQt6kWswkruJZni_JQLszGkiPM17nY_8FybdZn1XlCSbnP6xBvO3sH-taU1P7BJfFqIaktzGZVLSL0bUFq2Q0uI24QpxyuQDrwj8UwIUzQbey4tezO4zzNbuzUebFRsWtvSVyleh4aGmvNkZWvxKOz5HCc1uQFSksTAFXw&csui=3&ved=2ahUKEwiJ88TyyriRAxX4c_UHHfNaESMQgK4QegQIAxAI):** Can log in from multiple devices at once without issues.</span><span class="uJ19be notranslate" data-processed="true" data-wiz-uids="mXmM7_1a,mXmM7_1b,mXmM7_1c"><span class="vKEkVd" data-animation-atomic="" data-processed="true" data-wiz-attrbind="class=mXmM7_1a/TKHnVd;" style="white-space: nowrap; position: relative;"> <button aria-label="View related links" class="rBl3me" data-amic="true" data-icl-uuid="7e916a4a-8c29-4f30-a897-aa88d1c9bec2" data-processed="true" data-ved="2ahUKEwiJ88TyyriRAxX4c_UHHfNaESMQye0OegQIAxAJ" data-wiz-attrbind="disabled=mXmM7_1a/C5gNJc;class=mXmM7_1a/UpSNec;" style="margin: 0px 6px 0px 0px; background: none 0% 0% / auto repeat scroll padding-box border-box rgb(229, 237, 255); border: none; border-radius: 10px; height: 20px; padding: 0px; width: 28px; position: relative; outline: 0px; cursor: pointer;" tabindex="0"><span class="wiMplc ofC0Ud" data-processed="true" style="color: rgb(0, 29, 53); display: inline-block; transform: rotate(135deg);"><svg fill="currentColor" focusable="false" height="12px" style="margin-top: 3px;" viewbox="0 0 24 24" width="12px" xmlns="http://www.w3.org/2000/svg"><path d="M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71 0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71 0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76 0 5-2.24 5-5s-2.24-5-5-5z"></path></svg></span></button></span></span>

<div class="Fsg96" data-processed="true" data-sfc-cp="" id="bkmrk--1" jsaction="rcuQ6b:&mXmM7_1h|npT2md" jscontroller="KHhJQ" jsuid="mXmM7_1h" style="color: rgb(10, 10, 10); font-family: 'Google Sans', Roboto, Arial, sans-serif; font-size: 16px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;">  
</div><div aria-level="3" class="otQkpb" data-animation-nesting="" data-processed="true" data-sfc-cp="" id="bkmrk-how-it-works" jscontroller="a7qCn" jsuid="mXmM7_1i" role="heading" style="color: rgb(0, 29, 53); font-family: 'Google Sans', Roboto, Arial, sans-serif; font-size: 20px; line-height: 28px; margin: 20px 0px 10px; font-weight: 600; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;">How it Works<span class="txxDge notranslate" data-processed="true" data-wiz-uids="mXmM7_1j,mXmM7_1k,mXmM7_1l" style="visibility: hidden;"><span class="vKEkVd" data-animation-atomic="" data-processed="true" data-wiz-attrbind="class=mXmM7_1j/TKHnVd;" style="white-space: nowrap; position: relative;"><button aria-label="View related links" class="rBl3me" data-amic="true" data-icl-uuid="6f2498c6-b1fb-4c32-ae7c-0eca3ed84d96" data-processed="true" data-ved="2ahUKEwiJ88TyyriRAxX4c_UHHfNaESMQye0OegQIBBAA" data-wiz-attrbind="disabled=mXmM7_1j/C5gNJc;class=mXmM7_1j/UpSNec;" style="margin: 0px 6px 0px 0px; background: none 0% 0% / auto repeat scroll padding-box border-box rgb(229, 237, 255); border: none; border-radius: 10px; height: 20px; padding: 0px; width: 28px; position: relative; outline: 0px; cursor: pointer;" tabindex="0"><span class="wiMplc ofC0Ud" data-processed="true" style="color: rgb(0, 29, 53); display: inline-block; transform: rotate(135deg);"><svg fill="currentColor" focusable="false" height="12px" style="margin-top: 3px;" viewbox="0 0 24 24" width="12px" xmlns="http://www.w3.org/2000/svg"><path d="M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71 0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71 0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76 0 5-2.24 5-5s-2.24-5-5-5z"></path></svg></span></button></span></span></div>- <span class="T286Pc" data-processed="true" data-sfc-cp="" style="overflow-wrap: break-word;">Uses a client/server model over TCP/IP (ports 143/993).</span>
- <span class="T286Pc" data-processed="true" data-sfc-cp="" style="overflow-wrap: break-word;">Requires an internet connection to sync changes, but cached emails allow limited offline viewing.</span>
- <span class="T286Pc" data-processed="true" data-sfc-cp="" style="overflow-wrap: break-word;">Supports secure connections (SSL/TLS) for encryption.</span><span class="uJ19be notranslate" data-processed="true" data-wiz-uids="mXmM7_1t,mXmM7_1u,mXmM7_1v"><span class="vKEkVd" data-animation-atomic="" data-processed="true" data-wiz-attrbind="class=mXmM7_1t/TKHnVd;" style="white-space: nowrap; position: relative;"> <button aria-label="View related links" class="rBl3me" data-amic="true" data-icl-uuid="9664edb9-c9c1-4772-8cb4-7426e72606f5" data-processed="true" data-ved="2ahUKEwiJ88TyyriRAxX4c_UHHfNaESMQye0OegQIBRAD" data-wiz-attrbind="disabled=mXmM7_1t/C5gNJc;class=mXmM7_1t/UpSNec;" style="margin: 0px 6px 0px 0px; background: none 0% 0% / auto repeat scroll padding-box border-box rgb(229, 237, 255); border: none; border-radius: 10px; height: 20px; padding: 0px; width: 28px; position: relative; outline: 0px; cursor: pointer;" tabindex="0"><span class="wiMplc ofC0Ud" data-processed="true" style="color: rgb(0, 29, 53); display: inline-block; transform: rotate(135deg);"><svg fill="currentColor" focusable="false" height="12px" style="margin-top: 3px;" viewbox="0 0 24 24" width="12px" xmlns="http://www.w3.org/2000/svg"><path d="M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71 0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71 0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76 0 5-2.24 5-5s-2.24-5-5-5z"></path></svg></span></button></span></span>

<div class="Fsg96" data-processed="true" data-sfc-cp="" id="bkmrk--2" jsaction="rcuQ6b:&mXmM7_21|npT2md" jscontroller="KHhJQ" jsuid="mXmM7_21" style="color: rgb(10, 10, 10); font-family: 'Google Sans', Roboto, Arial, sans-serif; font-size: 16px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;">  
</div><div aria-level="3" class="otQkpb" data-animation-nesting="" data-processed="true" data-sfc-cp="" id="bkmrk-benefits" jscontroller="a7qCn" jsuid="mXmM7_22" role="heading" style="color: rgb(0, 29, 53); font-family: 'Google Sans', Roboto, Arial, sans-serif; font-size: 20px; line-height: 28px; margin: 20px 0px 10px; font-weight: 600; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;">Benefits<span class="txxDge notranslate" data-processed="true" data-wiz-uids="mXmM7_23,mXmM7_24,mXmM7_25" style="visibility: hidden;"><span class="vKEkVd" data-animation-atomic="" data-processed="true" data-wiz-attrbind="class=mXmM7_23/TKHnVd;" style="white-space: nowrap; position: relative;"><button aria-label="View related links" class="rBl3me" data-amic="true" data-icl-uuid="7670d07b-2782-41d7-937e-d22f43f7b61c" data-processed="true" data-ved="2ahUKEwiJ88TyyriRAxX4c_UHHfNaESMQye0OegQIBhAA" data-wiz-attrbind="disabled=mXmM7_23/C5gNJc;class=mXmM7_23/UpSNec;" style="margin: 0px 6px 0px 0px; background: none 0% 0% / auto repeat scroll padding-box border-box rgb(229, 237, 255); border: none; border-radius: 10px; height: 20px; padding: 0px; width: 28px; position: relative; outline: 0px; cursor: pointer;" tabindex="0"><span class="wiMplc ofC0Ud" data-processed="true" style="color: rgb(0, 29, 53); display: inline-block; transform: rotate(135deg);"><svg fill="currentColor" focusable="false" height="12px" style="margin-top: 3px;" viewbox="0 0 24 24" width="12px" xmlns="http://www.w3.org/2000/svg"><path d="M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71 0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71 0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76 0 5-2.24 5-5s-2.24-5-5-5z"></path></svg></span></button></span></span></div>- <span class="T286Pc" data-processed="true" data-sfc-cp="" style="overflow-wrap: break-word;">**Flexibility:** Access email from anywhere, any device.</span>
- <span class="T286Pc" data-processed="true" data-sfc-cp="" style="overflow-wrap: break-word;">**Consistency:** A unified view of your mailbox, always up-to-date.</span>
- <span class="T286Pc" data-processed="true" data-sfc-cp="" style="overflow-wrap: break-word;">**Efficiency:** Faster initial loading by downloading only necessary parts.</span><span class="uJ19be notranslate" data-processed="true" data-wiz-uids="mXmM7_2g,mXmM7_2h,mXmM7_2i"><span class="vKEkVd" data-animation-atomic="" data-processed="true" data-wiz-attrbind="class=mXmM7_2g/TKHnVd;" style="white-space: nowrap; position: relative;"> <button aria-label="View related links" class="rBl3me" data-amic="true" data-icl-uuid="18106609-ce74-4a47-a976-7e313239fe13" data-processed="true" data-ved="2ahUKEwiJ88TyyriRAxX4c_UHHfNaESMQye0OegQIBxAD" data-wiz-attrbind="disabled=mXmM7_2g/C5gNJc;class=mXmM7_2g/UpSNec;" style="margin: 0px 6px 0px 0px; background: none 0% 0% / auto repeat scroll padding-box border-box rgb(229, 237, 255); border: none; border-radius: 10px; height: 20px; padding: 0px; width: 28px; position: relative; outline: 0px; cursor: pointer;" tabindex="0"><span class="wiMplc ofC0Ud" data-processed="true" style="color: rgb(0, 29, 53); display: inline-block; transform: rotate(135deg);"><svg fill="currentColor" focusable="false" height="12px" style="margin-top: 3px;" viewbox="0 0 24 24" width="12px" xmlns="http://www.w3.org/2000/svg"><path d="M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71 0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71 0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76 0 5-2.24 5-5s-2.24-5-5-5z"></path></svg></span></button></span></span>

<div class="Fsg96" data-processed="true" data-sfc-cp="" id="bkmrk--3" jsaction="rcuQ6b:&mXmM7_2m|npT2md" jscontroller="KHhJQ" jsuid="mXmM7_2m" style="color: rgb(10, 10, 10); font-family: 'Google Sans', Roboto, Arial, sans-serif; font-size: 16px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;">  
</div><div aria-level="3" class="otQkpb" data-animation-nesting="" data-processed="true" data-sfc-cp="" id="bkmrk-considerations" jscontroller="a7qCn" jsuid="mXmM7_2n" role="heading" style="color: rgb(0, 29, 53); font-family: 'Google Sans', Roboto, Arial, sans-serif; font-size: 20px; line-height: 28px; margin: 20px 0px 10px; font-weight: 600; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;">Considerations<span class="txxDge notranslate" data-processed="true" data-wiz-uids="mXmM7_2o,mXmM7_2p,mXmM7_2q" style="visibility: hidden;"><span class="vKEkVd" data-animation-atomic="" data-processed="true" data-wiz-attrbind="class=mXmM7_2o/TKHnVd;" style="white-space: nowrap; position: relative;"><button aria-label="View related links" class="rBl3me" data-amic="true" data-icl-uuid="ffd98a45-799d-447d-9631-1bb1fe6a11bd" data-processed="true" data-ved="2ahUKEwiJ88TyyriRAxX4c_UHHfNaESMQye0OegQICBAA" data-wiz-attrbind="disabled=mXmM7_2o/C5gNJc;class=mXmM7_2o/UpSNec;" style="margin: 0px 6px 0px 0px; background: none 0% 0% / auto repeat scroll padding-box border-box rgb(229, 237, 255); border: none; border-radius: 10px; height: 20px; padding: 0px; width: 28px; position: relative; outline: 0px; cursor: pointer;" tabindex="0"><span class="wiMplc ofC0Ud" data-processed="true" style="color: rgb(0, 29, 53); display: inline-block; transform: rotate(135deg);"><svg fill="currentColor" focusable="false" height="12px" style="margin-top: 3px;" viewbox="0 0 24 24" width="12px" xmlns="http://www.w3.org/2000/svg"><path d="M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71 0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71 0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76 0 5-2.24 5-5s-2.24-5-5-5z"></path></svg></span></button></span></span></div>- <span class="T286Pc" data-processed="true" data-sfc-cp="" style="overflow-wrap: break-word;">**Server Dependency:** Relies on server uptime and might use more server storage.</span>
- <span class="T286Pc" data-processed="true" data-sfc-cp="" style="overflow-wrap: break-word;">**Security:** Needs proper network security (firewalls, encryption) to protect data on the server.</span><span class="uJ19be notranslate" data-processed="true" data-wiz-uids="mXmM7_2y,mXmM7_2z,mXmM7_30"><span class="vKEkVd" data-animation-atomic="" data-processed="true" data-wiz-attrbind="class=mXmM7_2y/TKHnVd;" style="white-space: nowrap; position: relative;"> </span></span>

# how to use mutt in ubuntu for reading mail from mbox files

<div class="n6owBd awi2gc" data-complete="true" data-copy-service-computed-style="font-family: "Google Sans", Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 0px 0px 16px; text-decoration: none; border-bottom: 0px rgb(10, 10, 10);" data-hveid="CAIIAQgFEAA" data-sfc-cb="" data-sfc-cp="" data-sfc-root="c" id="bkmrk-to-read-mail-from-an" jsaction="" jscontroller="TDBkbc#Ml18Xb" jsuid="yYk5rd_e" style="font-family: 'Google Sans', Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 0px 0px 16px; text-decoration: none; border-bottom: 0px rgb(10, 10, 10);"><span data-copy-service-computed-style="font-family: "Google Sans", Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(10, 10, 10);" data-subtree="aimfl,mfl" style="font-family: 'Google Sans', Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(10, 10, 10);">To read mail from an mbox file on Ubuntu using </span>**Mutt**, you can pass the file path directly to the `mutt` command using the `-f` flag. Since Mutt natively autodetects the mbox format, you do not need to configure an email server or complex configuration files to read a local mbox archive. [[1](https://www.systutorials.com/how-to-view-mbox-files-on-linux/), [2](http://www.rdrop.com/docs/mutt/manual58.html)]</div><div class="Fsg96" data-complete="true" data-copy-service-computed-style="font-family: "Google Sans", Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(10, 10, 10);" data-sfc-cb="" data-sfc-cp="" data-sfc-root="c" id="bkmrk-" jsaction="rcuQ6b:&yYk5rd_o|npT2md" jscontroller="KHhJQ#U8DOt" jsuid="yYk5rd_o" style="font-family: 'Google Sans', Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(10, 10, 10);"></div><div aria-level="3" class="otQkpb" data-animation-nesting="" data-complete="true" data-copy-service-computed-style="font-family: "Google Sans", Arial, sans-serif; font-size: 20px; font-weight: 600; margin: 24px 0px 12px; text-decoration: none; border-bottom: 0px rgb(0, 29, 53);" data-sfc-cb="" data-sfc-cp="" data-sfc-root="c" id="bkmrk-1.-install-mutt" jsaction="" jscontroller="a7qCn#ZxCkTb" jsuid="yYk5rd_p" role="heading" style="font-family: 'Google Sans', Arial, sans-serif; font-size: 20px; font-weight: 600; margin: 24px 0px 12px; text-decoration: none; border-bottom: 0px rgb(0, 29, 53);">1. Install Mutt</div><div class="" data-bfc="" data-copy-service-computed-style="font-family: "Google Sans", Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(10, 10, 10);" data-ved="2ahUKEwiagtGc6PqUAxXMamwGHdqDGR0Qi4wTeggIAggBCAcQAA" id="bkmrk-ensure-mutt-is-insta" style="font-family: 'Google Sans', Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(10, 10, 10);"><div class="n6owBd awi2gc" data-complete="true" data-copy-service-computed-style="font-family: "Google Sans", Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 12px 0px 16px; text-decoration: none; border-bottom: 0px rgb(10, 10, 10);" data-hveid="CAIIAQgHEAE" data-sfc-cb="" data-sfc-cp="" data-sfc-root="c" jsaction="" jscontroller="TDBkbc#Ml18Xb" jsuid="yYk5rd_u" style="font-family: 'Google Sans', Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 12px 0px 16px; text-decoration: none; border-bottom: 0px rgb(10, 10, 10);">Ensure Mutt is installed on your Ubuntu system using the Advanced Package Tool (APT): [[1](https://mritunjaysharma394.medium.com/how-to-set-up-mutt-text-based-mail-client-with-gmail-993ae40b0003)]</div></div><div class="Fsg96" data-complete="true" data-copy-service-computed-style="font-family: "Google Sans", Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(10, 10, 10);" data-sfc-cb="" data-sfc-cp="" data-sfc-root="c" id="bkmrk--1" jsaction="rcuQ6b:&yYk5rd_z|npT2md" jscontroller="KHhJQ#U8DOt" jsuid="yYk5rd_z" style="font-family: 'Google Sans', Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(10, 10, 10);"></div><div class="" data-bfc="" data-copy-service-computed-style="font-family: "Google Sans", Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(10, 10, 10);" data-ved="2ahUKEwiagtGc6PqUAxXMamwGHdqDGR0Qi4wTeggIAggBCAkQAA" id="bkmrk-bash" style="font-family: 'Google Sans', Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(10, 10, 10);"><div class="r1PmQe" data-complete="true" data-copy-service-computed-style="font-family: "Google Sans", Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 4px 0px 0px; text-decoration: none; border-bottom: 0px rgb(0, 29, 53);" data-hveid="CAIIAQgJEAE" data-sfc-cb="" data-sfc-root="c" data-wiz-uids="yYk5rd_12,yYk5rd_11" jsaction="" jscontroller="HP6Sjf#lcO7sb" jsuid="yYk5rd_10" style="font-family: 'Google Sans', Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 4px 0px 0px; text-decoration: none; border-bottom: 0px rgb(0, 29, 53);"><div data-copy-service-computed-style="font-family: "Google Sans", Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(0, 29, 53);" style="font-family: 'Google Sans', Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(0, 29, 53);"><div class="pHpOfb" data-animation-atomic="" data-copy-service-computed-style="font-family: "Google Sans", Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 1.2px solid rgb(243, 245, 246);" style="font-family: 'Google Sans', Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 1.2px solid rgb(243, 245, 246);"><div class="z0e9Qd" data-copy-service-computed-style="font-family: "Google Sans", Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(0, 29, 53);" style="font-family: 'Google Sans', Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(0, 29, 53);"><div class="vVRw1d" data-copy-service-computed-style="font-family: "Google Sans", Arial, sans-serif; font-size: 20px; font-weight: 500; margin: 0px; text-decoration: none; border-bottom: 0px rgb(0, 29, 53);" style="font-family: 'Google Sans', Arial, sans-serif; font-size: 20px; font-weight: 500; margin: 0px; text-decoration: none; border-bottom: 0px rgb(0, 29, 53);">bash</div></div><div class="pCTyYe" data-copy-service-computed-style="font-family: "Google Sans", Arial, sans-serif; font-size: 14px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(0, 29, 53);" dir="ltr" style="font-family: 'Google Sans', Arial, sans-serif; font-size: 14px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(0, 29, 53);"></div></div></div></div></div>```
sudo apt update && sudo apt install mutt

```

<div class="" data-bfc="" data-copy-service-computed-style="font-family: "Google Sans", Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(10, 10, 10);" data-ved="2ahUKEwiagtGc6PqUAxXMamwGHdqDGR0Qi4wTeggIAggBCAkQAA" id="bkmrk-use-code-with-cautio" style="font-family: 'Google Sans', Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(10, 10, 10);"><div class="r1PmQe" data-complete="true" data-copy-service-computed-style="font-family: "Google Sans", Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 4px 0px 0px; text-decoration: none; border-bottom: 0px rgb(0, 29, 53);" data-hveid="CAIIAQgJEAE" data-sfc-cb="" data-sfc-root="c" data-wiz-uids="yYk5rd_12,yYk5rd_11" jsaction="" jscontroller="HP6Sjf#lcO7sb" jsuid="yYk5rd_10" style="font-family: 'Google Sans', Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 4px 0px 0px; text-decoration: none; border-bottom: 0px rgb(0, 29, 53);"><div data-copy-service-computed-style="font-family: "Google Sans", Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(0, 29, 53);" style="font-family: 'Google Sans', Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(0, 29, 53);"><div class="pHpOfb" data-animation-atomic="" data-copy-service-computed-style="font-family: "Google Sans", Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 1.2px solid rgb(243, 245, 246);" style="font-family: 'Google Sans', Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 1.2px solid rgb(243, 245, 246);"><div class="pCTyYe" data-copy-service-computed-style="font-family: "Google Sans", Arial, sans-serif; font-size: 14px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(0, 29, 53);" dir="ltr" style="font-family: 'Google Sans', Arial, sans-serif; font-size: 14px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(0, 29, 53);"></div></div><div class="LIBz9e" data-animation-atomic="" data-copy-service-computed-style="font-family: "Google Sans", Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 3px 0px 0px; text-decoration: none; border-bottom: 1.2px solid rgb(243, 245, 246);" style="font-family: 'Google Sans', Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 3px 0px 0px; text-decoration: none; border-bottom: 1.2px solid rgb(243, 245, 246);"><div class="P8PNlb" data-copy-service-computed-style="font-family: "Google Sans", Arial, sans-serif; font-size: 12px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(0, 29, 53);" style="font-family: 'Google Sans', Arial, sans-serif; font-size: 12px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(0, 29, 53);">Use code with caution.</div><div data-complete="true" data-copy-service-computed-style="font-family: "Google Sans", Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(0, 29, 53);" data-sfc-cb="" data-sfc-cp="" data-sfc-root="c" data-ved="2ahUKEwiagtGc6PqUAxXMamwGHdqDGR0Qh9gSeggIAggBCAkQAw" jsaction="" jscontroller="cXTEid#e0nEwf" jsuid="yYk5rd_13" style="font-family: 'Google Sans', Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(0, 29, 53);"><button aria-describedby="" aria-label="Copy code text to clipboard." class="FTsWP RmjGdc IsqrXb" data-complete="true" data-copy-service-computed-style="font-family: Arial; font-size: 13.3333px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(42, 49, 60);" data-sfc-cb="KjsqPd=&yYk5rd_13:UEmoBd" data-sfc-cp="" data-sfc-root="c" style="font-family: Arial; font-size: 13.3333px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(42, 49, 60);"><span class="UTNHae" data-complete="true" data-copy-service-computed-style="font-family: Arial; font-size: 13.3333px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(42, 49, 60);" data-sfc-cb="" data-sfc-root="c" style="font-family: Arial; font-size: 13.3333px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(42, 49, 60);"></span><span aria-hidden="true" class="I36Cje" data-copy-service-computed-style="font-family: Arial; font-size: 13.3333px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(42, 49, 60);" style="font-family: Arial; font-size: 13.3333px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(42, 49, 60);"><svg aria-hidden="true" fill="currentColor" height="18px" viewbox="0 -960 960 960" width="18px"><path d="M360-240q-33 0-56.5-23.5T280-320v-480q0-33 23.5-56.5T360-880h360q33 0 56.5 23.5T800-800v480q0 33-23.5 56.5T720-240H360Zm0-80h360v-480H360v480ZM200-80q-33 0-56.5-23.5T120-160v-560h80v560h440v80H200Zm160-240v-480 480Z"></path></svg></span></button><div class="ypuoue" data-copy-service-computed-style="font-family: Arial; font-size: 13.3333px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(42, 49, 60);" style="font-family: Arial; font-size: 13.3333px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(42, 49, 60);">  
</div><button aria-describedby="" aria-label="Copy code text to clipboard." class="FTsWP RmjGdc IsqrXb" data-complete="true" data-copy-service-computed-style="font-family: Arial; font-size: 13.3333px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(42, 49, 60);" data-sfc-cb="KjsqPd=&yYk5rd_13:UEmoBd" data-sfc-cp="" data-sfc-root="c" id="" style="font-family: Arial; font-size: 13.3333px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(42, 49, 60);"></button></div></div></div></div></div><div class="Fsg96" data-complete="true" data-copy-service-computed-style="font-family: "Google Sans", Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(10, 10, 10);" data-sfc-cb="" data-sfc-cp="" data-sfc-root="c" id="bkmrk--2" jsaction="rcuQ6b:&yYk5rd_17|npT2md" jscontroller="KHhJQ#U8DOt" jsuid="yYk5rd_17" style="font-family: 'Google Sans', Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(10, 10, 10);"></div><div class="" data-bfc="" data-copy-service-computed-style="font-family: "Google Sans", Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(10, 10, 10);" data-ved="2ahUKEwiagtGc6PqUAxXMamwGHdqDGR0Qi4wTeggIAggBCAoQAA" id="bkmrk-2.-open-the-mbox-fil" style="font-family: 'Google Sans', Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(10, 10, 10);"><div aria-level="3" class="otQkpb" data-animation-nesting="" data-complete="true" data-copy-service-computed-style="font-family: "Google Sans", Arial, sans-serif; font-size: 20px; font-weight: 600; margin: 24px 0px 12px; text-decoration: none; border-bottom: 0px rgb(0, 29, 53);" data-sfc-cb="" data-sfc-cp="" data-sfc-root="c" jsaction="" jscontroller="a7qCn#ZxCkTb" jsuid="yYk5rd_18" role="heading" style="font-family: 'Google Sans', Arial, sans-serif; font-size: 20px; font-weight: 600; margin: 24px 0px 12px; text-decoration: none; border-bottom: 0px rgb(0, 29, 53);">2. Open the mbox File</div></div><div class="" data-bfc="" data-copy-service-computed-style="font-family: "Google Sans", Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(10, 10, 10);" data-ved="2ahUKEwiagtGc6PqUAxXMamwGHdqDGR0Qi4wTeggIAggBCAsQAA" id="bkmrk-launch-mutt-and-poin" style="font-family: 'Google Sans', Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(10, 10, 10);"><div class="n6owBd awi2gc" data-complete="true" data-copy-service-computed-style="font-family: "Google Sans", Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 12px 0px 16px; text-decoration: none; border-bottom: 0px rgb(10, 10, 10);" data-hveid="CAIIAQgLEAE" data-sfc-cb="" data-sfc-cp="" data-sfc-root="c" jsaction="" jscontroller="TDBkbc#Ml18Xb" jsuid="yYk5rd_1d" style="font-family: 'Google Sans', Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 12px 0px 16px; text-decoration: none; border-bottom: 0px rgb(10, 10, 10);">Launch Mutt and point it directly to your target `.mbox` file: [[1](https://www.systutorials.com/how-to-view-mbox-files-on-linux/)]</div></div><div class="Fsg96" data-complete="true" data-copy-service-computed-style="font-family: "Google Sans", Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(10, 10, 10);" data-sfc-cb="" data-sfc-cp="" data-sfc-root="c" id="bkmrk--3" jsaction="rcuQ6b:&yYk5rd_1k|npT2md" jscontroller="KHhJQ#U8DOt" jsuid="yYk5rd_1k" style="font-family: 'Google Sans', Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(10, 10, 10);"></div><div class="" data-bfc="" data-copy-service-computed-style="font-family: "Google Sans", Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(10, 10, 10);" data-ved="2ahUKEwiagtGc6PqUAxXMamwGHdqDGR0Qi4wTeggIAggBCA4QAA" id="bkmrk-bash-1" style="font-family: 'Google Sans', Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(10, 10, 10);"><div class="r1PmQe" data-complete="true" data-copy-service-computed-style="font-family: "Google Sans", Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 4px 0px 0px; text-decoration: none; border-bottom: 0px rgb(0, 29, 53);" data-hveid="CAIIAQgOEAE" data-sfc-cb="" data-sfc-root="c" data-wiz-uids="yYk5rd_1n,yYk5rd_1m" jsaction="" jscontroller="HP6Sjf#lcO7sb" jsuid="yYk5rd_1l" style="font-family: 'Google Sans', Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 4px 0px 0px; text-decoration: none; border-bottom: 0px rgb(0, 29, 53);"><div data-copy-service-computed-style="font-family: "Google Sans", Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(0, 29, 53);" style="font-family: 'Google Sans', Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(0, 29, 53);"><div class="pHpOfb" data-animation-atomic="" data-copy-service-computed-style="font-family: "Google Sans", Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 1.2px solid rgb(243, 245, 246);" style="font-family: 'Google Sans', Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 1.2px solid rgb(243, 245, 246);"><div class="z0e9Qd" data-copy-service-computed-style="font-family: "Google Sans", Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(0, 29, 53);" style="font-family: 'Google Sans', Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(0, 29, 53);"><div class="vVRw1d" data-copy-service-computed-style="font-family: "Google Sans", Arial, sans-serif; font-size: 20px; font-weight: 500; margin: 0px; text-decoration: none; border-bottom: 0px rgb(0, 29, 53);" style="font-family: 'Google Sans', Arial, sans-serif; font-size: 20px; font-weight: 500; margin: 0px; text-decoration: none; border-bottom: 0px rgb(0, 29, 53);">bash</div></div><div class="pCTyYe" data-copy-service-computed-style="font-family: "Google Sans", Arial, sans-serif; font-size: 14px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(0, 29, 53);" dir="ltr" style="font-family: 'Google Sans', Arial, sans-serif; font-size: 14px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(0, 29, 53);"></div></div></div></div></div>```
mutt -f /path/to/your/file.mbox

```

<div class="" data-bfc="" data-copy-service-computed-style="font-family: "Google Sans", Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(10, 10, 10);" data-ved="2ahUKEwiagtGc6PqUAxXMamwGHdqDGR0Qi4wTeggIAggBCA4QAA" id="bkmrk-use-code-with-cautio-1" style="font-family: 'Google Sans', Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(10, 10, 10);"><div class="r1PmQe" data-complete="true" data-copy-service-computed-style="font-family: "Google Sans", Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 4px 0px 0px; text-decoration: none; border-bottom: 0px rgb(0, 29, 53);" data-hveid="CAIIAQgOEAE" data-sfc-cb="" data-sfc-root="c" data-wiz-uids="yYk5rd_1n,yYk5rd_1m" jsaction="" jscontroller="HP6Sjf#lcO7sb" jsuid="yYk5rd_1l" style="font-family: 'Google Sans', Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 4px 0px 0px; text-decoration: none; border-bottom: 0px rgb(0, 29, 53);"><div data-copy-service-computed-style="font-family: "Google Sans", Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(0, 29, 53);" style="font-family: 'Google Sans', Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(0, 29, 53);"><div class="pHpOfb" data-animation-atomic="" data-copy-service-computed-style="font-family: "Google Sans", Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 1.2px solid rgb(243, 245, 246);" style="font-family: 'Google Sans', Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 1.2px solid rgb(243, 245, 246);"><div class="pCTyYe" data-copy-service-computed-style="font-family: "Google Sans", Arial, sans-serif; font-size: 14px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(0, 29, 53);" dir="ltr" style="font-family: 'Google Sans', Arial, sans-serif; font-size: 14px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(0, 29, 53);"></div></div><div class="LIBz9e" data-animation-atomic="" data-copy-service-computed-style="font-family: "Google Sans", Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 3px 0px 0px; text-decoration: none; border-bottom: 1.2px solid rgb(243, 245, 246);" style="font-family: 'Google Sans', Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 3px 0px 0px; text-decoration: none; border-bottom: 1.2px solid rgb(243, 245, 246);"><div class="P8PNlb" data-copy-service-computed-style="font-family: "Google Sans", Arial, sans-serif; font-size: 12px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(0, 29, 53);" style="font-family: 'Google Sans', Arial, sans-serif; font-size: 12px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(0, 29, 53);">Use code with caution.</div><div data-complete="true" data-copy-service-computed-style="font-family: "Google Sans", Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(0, 29, 53);" data-sfc-cb="" data-sfc-cp="" data-sfc-root="c" data-ved="2ahUKEwiagtGc6PqUAxXMamwGHdqDGR0Qh9gSeggIAggBCA4QAw" jsaction="" jscontroller="cXTEid#e0nEwf" jsuid="yYk5rd_1o" style="font-family: 'Google Sans', Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(0, 29, 53);"><button aria-describedby="" aria-label="Copy code text to clipboard." class="FTsWP RmjGdc IsqrXb" data-complete="true" data-copy-service-computed-style="font-family: Arial; font-size: 13.3333px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(42, 49, 60);" data-sfc-cb="KjsqPd=&yYk5rd_1o:UEmoBd" data-sfc-cp="" data-sfc-root="c" data-wiz-attrbind="disabled=yYk5rd_1p/ggNWmb" style="font-family: Arial; font-size: 13.3333px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(42, 49, 60);"><span class="UTNHae" data-complete="true" data-copy-service-computed-style="font-family: Arial; font-size: 13.3333px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(42, 49, 60);" data-sfc-cb="" data-sfc-root="c" data-wiz-attrbind="class=yYk5rd_1r/ggNWmb" style="font-family: Arial; font-size: 13.3333px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(42, 49, 60);"></span><span aria-hidden="true" class="I36Cje" data-copy-service-computed-style="font-family: Arial; font-size: 13.3333px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(42, 49, 60);" style="font-family: Arial; font-size: 13.3333px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(42, 49, 60);"><svg aria-hidden="true" fill="currentColor" height="18px" viewbox="0 -960 960 960" width="18px"><path d="M360-240q-33 0-56.5-23.5T280-320v-480q0-33 23.5-56.5T360-880h360q33 0 56.5 23.5T800-800v480q0 33-23.5 56.5T720-240H360Zm0-80h360v-480H360v480ZM200-80q-33 0-56.5-23.5T120-160v-560h80v560h440v80H200Zm160-240v-480 480Z"></path></svg></span></button><div class="ypuoue" data-copy-service-computed-style="font-family: Arial; font-size: 13.3333px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(42, 49, 60);" style="font-family: Arial; font-size: 13.3333px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(42, 49, 60);">  
</div><button aria-describedby="" aria-label="Copy code text to clipboard." class="FTsWP RmjGdc IsqrXb" data-complete="true" data-copy-service-computed-style="font-family: Arial; font-size: 13.3333px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(42, 49, 60);" data-sfc-cb="KjsqPd=&yYk5rd_1o:UEmoBd" data-sfc-cp="" data-sfc-root="c" data-wiz-attrbind="disabled=yYk5rd_1p/ggNWmb" id="" style="font-family: Arial; font-size: 13.3333px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(42, 49, 60);"></button></div></div></div></div></div><div class="" data-bfc="" data-copy-service-computed-style="font-family: "Google Sans", Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(10, 10, 10);" data-ved="2ahUKEwiagtGc6PqUAxXMamwGHdqDGR0Qi4wTeggIAggBCA8QAA" id="bkmrk-tip%3A-if-you-only-wan" style="font-family: 'Google Sans', Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(10, 10, 10);">- <span class="T286Pc" data-complete="true" data-copy-service-computed-style="font-family: "Google Sans", Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(10, 10, 10);" data-sfc-cb="" data-sfc-cp="" data-sfc-root="c" style="font-family: 'Google Sans', Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(10, 10, 10);">**Tip:** If you only want to view the messages without risk of accidental changes or deletions, open it in read-only mode using the `-R` flag:</span><div class="r1PmQe" data-complete="true" data-copy-service-computed-style="font-family: "Google Sans", Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 4px 0px 0px; text-decoration: none; border-bottom: 0px rgb(0, 29, 53);" data-hveid="CAIIAQgPEAI" data-sfc-cb="" data-sfc-root="c" data-wiz-uids="yYk5rd_1z,yYk5rd_1y" jsaction="" jscontroller="HP6Sjf#lcO7sb" jsuid="yYk5rd_1x" style="font-family: 'Google Sans', Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 4px 0px 0px; text-decoration: none; border-bottom: 0px rgb(0, 29, 53);"><div data-copy-service-computed-style="font-family: "Google Sans", Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(0, 29, 53);" style="font-family: 'Google Sans', Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(0, 29, 53);"><div class="pHpOfb" data-animation-atomic="" data-copy-service-computed-style="font-family: "Google Sans", Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 1.2px solid rgb(243, 245, 246);" style="font-family: 'Google Sans', Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 1.2px solid rgb(243, 245, 246);"><div class="z0e9Qd" data-copy-service-computed-style="font-family: "Google Sans", Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(0, 29, 53);" style="font-family: 'Google Sans', Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(0, 29, 53);"><div class="vVRw1d" data-copy-service-computed-style="font-family: "Google Sans", Arial, sans-serif; font-size: 20px; font-weight: 500; margin: 0px; text-decoration: none; border-bottom: 0px rgb(0, 29, 53);" style="font-family: 'Google Sans', Arial, sans-serif; font-size: 20px; font-weight: 500; margin: 0px; text-decoration: none; border-bottom: 0px rgb(0, 29, 53);">bash</div></div><div class="pCTyYe" data-copy-service-computed-style="font-family: "Google Sans", Arial, sans-serif; font-size: 14px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(0, 29, 53);" dir="ltr" style="font-family: 'Google Sans', Arial, sans-serif; font-size: 14px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(0, 29, 53);"></div></div></div></div>```
    mutt -R -f /path/to/your/file.mbox
    
    ```
    
    <div class="r1PmQe" data-complete="true" data-copy-service-computed-style="font-family: "Google Sans", Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 4px 0px 0px; text-decoration: none; border-bottom: 0px rgb(0, 29, 53);" data-hveid="CAIIAQgPEAI" data-sfc-cb="" data-sfc-root="c" data-wiz-uids="yYk5rd_1z,yYk5rd_1y" jsaction="" jscontroller="HP6Sjf#lcO7sb" jsuid="yYk5rd_1x" style="font-family: 'Google Sans', Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 4px 0px 0px; text-decoration: none; border-bottom: 0px rgb(0, 29, 53);"><div data-copy-service-computed-style="font-family: "Google Sans", Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(0, 29, 53);" style="font-family: 'Google Sans', Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(0, 29, 53);"><div class="pHpOfb" data-animation-atomic="" data-copy-service-computed-style="font-family: "Google Sans", Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 1.2px solid rgb(243, 245, 246);" style="font-family: 'Google Sans', Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 1.2px solid rgb(243, 245, 246);"><div class="pCTyYe" data-copy-service-computed-style="font-family: "Google Sans", Arial, sans-serif; font-size: 14px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(0, 29, 53);" dir="ltr" style="font-family: 'Google Sans', Arial, sans-serif; font-size: 14px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(0, 29, 53);"></div></div><div class="LIBz9e" data-animation-atomic="" data-copy-service-computed-style="font-family: "Google Sans", Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 3px 0px 0px; text-decoration: none; border-bottom: 1.2px solid rgb(243, 245, 246);" style="font-family: 'Google Sans', Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 3px 0px 0px; text-decoration: none; border-bottom: 1.2px solid rgb(243, 245, 246);"><div class="P8PNlb" data-copy-service-computed-style="font-family: "Google Sans", Arial, sans-serif; font-size: 12px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(0, 29, 53);" style="font-family: 'Google Sans', Arial, sans-serif; font-size: 12px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(0, 29, 53);">Use code with caution.</div><div data-complete="true" data-copy-service-computed-style="font-family: "Google Sans", Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(0, 29, 53);" data-sfc-cb="" data-sfc-cp="" data-sfc-root="c" data-ved="2ahUKEwiagtGc6PqUAxXMamwGHdqDGR0Qh9gSeggIAggBCA8QBA" jsaction="" jscontroller="cXTEid#e0nEwf" jsuid="yYk5rd_20" style="font-family: 'Google Sans', Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(0, 29, 53);"><button aria-describedby="" aria-label="Copy code text to clipboard." class="FTsWP RmjGdc IsqrXb" data-complete="true" data-copy-service-computed-style="font-family: Arial; font-size: 13.3333px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(42, 49, 60);" data-sfc-cb="KjsqPd=&yYk5rd_20:UEmoBd" data-sfc-cp="" data-sfc-root="c" data-wiz-attrbind="disabled=yYk5rd_21/ggNWmb" style="font-family: Arial; font-size: 13.3333px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(42, 49, 60);"><span class="UTNHae" data-complete="true" data-copy-service-computed-style="font-family: Arial; font-size: 13.3333px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(42, 49, 60);" data-sfc-cb="" data-sfc-root="c" data-wiz-attrbind="class=yYk5rd_23/ggNWmb" style="font-family: Arial; font-size: 13.3333px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(42, 49, 60);"></span><span aria-hidden="true" class="I36Cje" data-copy-service-computed-style="font-family: Arial; font-size: 13.3333px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(42, 49, 60);" style="font-family: Arial; font-size: 13.3333px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(42, 49, 60);"><svg aria-hidden="true" fill="currentColor" height="18px" viewbox="0 -960 960 960" width="18px"><path d="M360-240q-33 0-56.5-23.5T280-320v-480q0-33 23.5-56.5T360-880h360q33 0 56.5 23.5T800-800v480q0 33-23.5 56.5T720-240H360Zm0-80h360v-480H360v480ZM200-80q-33 0-56.5-23.5T120-160v-560h80v560h440v80H200Zm160-240v-480 480Z"></path></svg></span></button><div class="ypuoue" data-copy-service-computed-style="font-family: Arial; font-size: 13.3333px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(42, 49, 60);" style="font-family: Arial; font-size: 13.3333px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(42, 49, 60);">  
    </div><button aria-describedby="" aria-label="Copy code text to clipboard." class="FTsWP RmjGdc IsqrXb" data-complete="true" data-copy-service-computed-style="font-family: Arial; font-size: 13.3333px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(42, 49, 60);" data-sfc-cb="KjsqPd=&yYk5rd_20:UEmoBd" data-sfc-cp="" data-sfc-root="c" data-wiz-attrbind="disabled=yYk5rd_21/ggNWmb" id="" style="font-family: Arial; font-size: 13.3333px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(42, 49, 60);"></button></div></div></div></div>\[[1](https://www.tecmint.com/send-mail-from-command-line-using-mutt-command/), [2](https://www.tecmint.com/send-mail-from-command-line-using-mutt-command/), [3](https://manpages.ubuntu.com/manpages/jammy/man1/chewmail.1.html)\]

</div><div class="Fsg96" data-complete="true" data-copy-service-computed-style="font-family: "Google Sans", Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(10, 10, 10);" data-sfc-cb="" data-sfc-cp="" data-sfc-root="c" id="bkmrk--4" jsaction="rcuQ6b:&yYk5rd_29|npT2md" jscontroller="KHhJQ#U8DOt" jsuid="yYk5rd_29" style="font-family: 'Google Sans', Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(10, 10, 10);"></div><div class="" data-bfc="" data-copy-service-computed-style="font-family: "Google Sans", Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(10, 10, 10);" data-ved="2ahUKEwiagtGc6PqUAxXMamwGHdqDGR0Qi4wTeggIAggBCBIQAA" id="bkmrk-3.-essential-navigat" style="font-family: 'Google Sans', Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(10, 10, 10);"><div aria-level="3" class="otQkpb" data-animation-nesting="" data-complete="true" data-copy-service-computed-style="font-family: "Google Sans", Arial, sans-serif; font-size: 20px; font-weight: 600; margin: 24px 0px 12px; text-decoration: none; border-bottom: 0px rgb(0, 29, 53);" data-sfc-cb="" data-sfc-cp="" data-sfc-root="c" jsaction="" jscontroller="a7qCn#ZxCkTb" jsuid="yYk5rd_2a" role="heading" style="font-family: 'Google Sans', Arial, sans-serif; font-size: 20px; font-weight: 600; margin: 24px 0px 12px; text-decoration: none; border-bottom: 0px rgb(0, 29, 53);">3. Essential Navigation Keyboard Shortcuts</div></div><div class="" data-bfc="" data-copy-service-computed-style="font-family: "Google Sans", Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(10, 10, 10);" data-ved="2ahUKEwiagtGc6PqUAxXMamwGHdqDGR0Qi4wTeggIAggBCBQQAA" id="bkmrk-once-mutt-loads-the-" style="font-family: 'Google Sans', Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(10, 10, 10);"><div class="n6owBd awi2gc" data-complete="true" data-copy-service-computed-style="font-family: "Google Sans", Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 12px 0px 16px; text-decoration: none; border-bottom: 0px rgb(10, 10, 10);" data-hveid="CAIIAQgUEAE" data-sfc-cb="" data-sfc-cp="" data-sfc-root="c" jsaction="" jscontroller="TDBkbc#Ml18Xb" jsuid="yYk5rd_2f" style="font-family: 'Google Sans', Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 12px 0px 16px; text-decoration: none; border-bottom: 0px rgb(10, 10, 10);">Once Mutt loads the interactive terminal interface, use these standard shortcuts to browse the archive: [[1](https://www.youtube.com/watch?v=jTPa7vWNAS8), [2](https://unix.stackexchange.com/questions/762781/how-to-view-sent-messages-in-mutt-using-the-default-mbox-format)]</div></div><div class="" data-bfc="" data-copy-service-computed-style="font-family: "Google Sans", Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(10, 10, 10);" data-ved="2ahUKEwiagtGc6PqUAxXMamwGHdqDGR0Qi4wTeggIAggBCBYQAA" id="bkmrk-%E2%86%91-%2F-%E2%86%93-%28or-k-%2F-j%29%3A-sc" style="font-family: 'Google Sans', Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(10, 10, 10);">- <span class="T286Pc" data-complete="true" data-copy-service-computed-style="font-family: "Google Sans", Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(10, 10, 10);" data-sfc-cb="" data-sfc-cp="" data-sfc-root="c" style="font-family: 'Google Sans', Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(10, 10, 10);">`↑` / `↓` (or `k` / `j`): Scroll through the message index list.</span>
- <span class="T286Pc" data-complete="true" data-copy-service-computed-style="font-family: "Google Sans", Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(10, 10, 10);" data-sfc-cb="" data-sfc-cp="" data-sfc-root="c" style="font-family: 'Google Sans', Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(10, 10, 10);">`Enter` (or `Space`): Open and read the highlighted email.</span>
- <span class="T286Pc" data-complete="true" data-copy-service-computed-style="font-family: "Google Sans", Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(10, 10, 10);" data-sfc-cb="" data-sfc-cp="" data-sfc-root="c" style="font-family: 'Google Sans', Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(10, 10, 10);">`i`: Exit the email body view and return to the main index list.</span>
- <span class="T286Pc" data-complete="true" data-copy-service-computed-style="font-family: "Google Sans", Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(10, 10, 10);" data-sfc-cb="" data-sfc-cp="" data-sfc-root="c" style="font-family: 'Google Sans', Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(10, 10, 10);">`d`: Mark an email for deletion (only applies if you didn't use the read-only flag).</span>
- <span class="T286Pc" data-complete="true" data-copy-service-computed-style="font-family: "Google Sans", Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(10, 10, 10);" data-sfc-cb="" data-sfc-cp="" data-sfc-root="c" style="font-family: 'Google Sans', Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(10, 10, 10);">`c`: Change to a different folder or switch to another mbox file without closing Mutt.</span>
- <span class="T286Pc" data-complete="true" data-copy-service-computed-style="font-family: "Google Sans", Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(10, 10, 10);" data-sfc-cb="" data-sfc-cp="" data-sfc-root="c" style="font-family: 'Google Sans', Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(10, 10, 10);">`q`: Quit Mutt.</span> \[[1](https://www.linux.com/news/fetching-email-mutt/), [2](https://www.cubexsoft.com/blog/how-to-search-content-inside-mbox-files/?srsltid=AfmBOor6O_Dzz-IflFR0yJ8yEvbskQ8BPzwL-sAOFZYOEfpLzzcyNFFB), [3](https://www.youtube.com/watch?v=jTPa7vWNAS8), [4](https://unix.stackexchange.com/questions/762781/how-to-view-sent-messages-in-mutt-using-the-default-mbox-format)\]

</div><div class="Fsg96" data-complete="true" data-copy-service-computed-style="font-family: "Google Sans", Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(10, 10, 10);" data-sfc-cb="" data-sfc-cp="" data-sfc-root="c" id="bkmrk--5" jsaction="rcuQ6b:&yYk5rd_3f|npT2md" jscontroller="KHhJQ#U8DOt" jsuid="yYk5rd_3f" style="font-family: 'Google Sans', Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(10, 10, 10);"></div><div class="" data-bfc="" data-copy-service-computed-style="font-family: "Google Sans", Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(10, 10, 10);" data-ved="2ahUKEwiagtGc6PqUAxXMamwGHdqDGR0Qi4wTeggIAggBCBgQAA" id="bkmrk-4.-optional-configur" style="font-family: 'Google Sans', Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(10, 10, 10);"><div aria-level="3" class="otQkpb" data-animation-nesting="" data-complete="true" data-copy-service-computed-style="font-family: "Google Sans", Arial, sans-serif; font-size: 20px; font-weight: 600; margin: 24px 0px 12px; text-decoration: none; border-bottom: 0px rgb(0, 29, 53);" data-sfc-cb="" data-sfc-cp="" data-sfc-root="c" jsaction="" jscontroller="a7qCn#ZxCkTb" jsuid="yYk5rd_3g" role="heading" style="font-family: 'Google Sans', Arial, sans-serif; font-size: 20px; font-weight: 600; margin: 24px 0px 12px; text-decoration: none; border-bottom: 0px rgb(0, 29, 53);">4. Optional Configuration (Fixing HTML emails)</div></div><div class="" data-bfc="" data-copy-service-computed-style="font-family: "Google Sans", Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(10, 10, 10);" data-ved="2ahUKEwiagtGc6PqUAxXMamwGHdqDGR0Qi4wTeggIAggBCBoQAA" id="bkmrk-many-modern-mbox-fil" style="font-family: 'Google Sans', Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(10, 10, 10);"><div class="n6owBd awi2gc" data-complete="true" data-copy-service-computed-style="font-family: "Google Sans", Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 12px 0px 16px; text-decoration: none; border-bottom: 0px rgb(10, 10, 10);" data-hveid="CAIIAQgaEAE" data-sfc-cb="" data-sfc-cp="" data-sfc-root="c" jsaction="" jscontroller="TDBkbc#Ml18Xb" jsuid="yYk5rd_3l" style="font-family: 'Google Sans', Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 12px 0px 16px; text-decoration: none; border-bottom: 0px rgb(10, 10, 10);">Many modern mbox files contain HTML formatting that looks cluttered in a plain-text terminal. You can make Mutt auto-convert HTML emails to text using an external text browser like `lynx` or `w3m`. [[1](https://cri.dev/posts/2021-02-18-read-mbox-gmail-export-linux-mutt-thunderbird/), [2](https://www.cigatisolutions.com/blog/convert-mbox-to-html/), [3](https://lists.debian.org/debian-user/2024/12/msg01078.html), [4](https://www.reddit.com/r/linux/comments/9c3wco/mutt_and_html_emails/), [5](https://lwn.net/Articles/837960/)]</div></div><div class="" data-bfc="" data-copy-service-computed-style="font-family: "Google Sans", Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(10, 10, 10);" data-ved="2ahUKEwiagtGc6PqUAxXMamwGHdqDGR0Qi4wTeggIAggBCB4QAA" id="bkmrk-create-or-edit-your-" style="font-family: 'Google Sans', Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(10, 10, 10);"><div class="n6owBd awi2gc" data-complete="true" data-copy-service-computed-style="font-family: "Google Sans", Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 12px 0px 16px; text-decoration: none; border-bottom: 0px rgb(10, 10, 10);" data-hveid="CAIIAQgeEAE" data-sfc-cb="" data-sfc-cp="" data-sfc-root="c" jsaction="" jscontroller="TDBkbc#Ml18Xb" jsuid="yYk5rd_3t" style="font-family: 'Google Sans', Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 12px 0px 16px; text-decoration: none; border-bottom: 0px rgb(10, 10, 10);">Create or edit your local config file at `~/.muttrc` or `~/.config/mutt/muttrc` and add the following lines: [[1](https://www.youtube.com/watch?v=2jMInHnpNfQ), [2](https://manpages.ubuntu.com/manpages/xenial/man5/muttrc-org.5.html), [3](https://anjibabuiitk.github.io/Send-Mail-from-Terminal/)]</div></div><div class="Fsg96" data-complete="true" data-copy-service-computed-style="font-family: "Google Sans", Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(10, 10, 10);" data-sfc-cb="" data-sfc-cp="" data-sfc-root="c" id="bkmrk--6" jsaction="rcuQ6b:&yYk5rd_42|npT2md" jscontroller="KHhJQ#U8DOt" jsuid="yYk5rd_42" style="font-family: 'Google Sans', Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(10, 10, 10);"></div><div class="" data-bfc="" data-copy-service-computed-style="font-family: "Google Sans", Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(10, 10, 10);" data-ved="2ahUKEwiagtGc6PqUAxXMamwGHdqDGR0Qi4wTeggIAggBCCAQAA" id="bkmrk-text" style="font-family: 'Google Sans', Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(10, 10, 10);"><div class="r1PmQe" data-complete="true" data-copy-service-computed-style="font-family: "Google Sans", Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 4px 0px 0px; text-decoration: none; border-bottom: 0px rgb(0, 29, 53);" data-hveid="CAIIAQggEAE" data-sfc-cb="" data-sfc-root="c" data-wiz-uids="yYk5rd_45,yYk5rd_44" jsaction="" jscontroller="HP6Sjf#lcO7sb" jsuid="yYk5rd_43" style="font-family: 'Google Sans', Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 4px 0px 0px; text-decoration: none; border-bottom: 0px rgb(0, 29, 53);"><div data-copy-service-computed-style="font-family: "Google Sans", Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(0, 29, 53);" style="font-family: 'Google Sans', Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(0, 29, 53);"><div class="pHpOfb" data-animation-atomic="" data-copy-service-computed-style="font-family: "Google Sans", Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 1.2px solid rgb(243, 245, 246);" style="font-family: 'Google Sans', Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 1.2px solid rgb(243, 245, 246);"><div class="z0e9Qd" data-copy-service-computed-style="font-family: "Google Sans", Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(0, 29, 53);" style="font-family: 'Google Sans', Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(0, 29, 53);"><div class="vVRw1d" data-copy-service-computed-style="font-family: "Google Sans", Arial, sans-serif; font-size: 20px; font-weight: 500; margin: 0px; text-decoration: none; border-bottom: 0px rgb(0, 29, 53);" style="font-family: 'Google Sans', Arial, sans-serif; font-size: 20px; font-weight: 500; margin: 0px; text-decoration: none; border-bottom: 0px rgb(0, 29, 53);">text</div></div><div class="pCTyYe" data-copy-service-computed-style="font-family: "Google Sans", Arial, sans-serif; font-size: 14px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(0, 29, 53);" dir="ltr" style="font-family: 'Google Sans', Arial, sans-serif; font-size: 14px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(0, 29, 53);"></div></div></div></div></div>```
auto_view text/html
alternative_order text/plain text/html

```

<div class="" data-bfc="" data-copy-service-computed-style="font-family: "Google Sans", Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(10, 10, 10);" data-ved="2ahUKEwiagtGc6PqUAxXMamwGHdqDGR0Qi4wTeggIAggBCCAQAA" id="bkmrk-use-code-with-cautio-2" style="font-family: 'Google Sans', Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(10, 10, 10);"><div class="r1PmQe" data-complete="true" data-copy-service-computed-style="font-family: "Google Sans", Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 4px 0px 0px; text-decoration: none; border-bottom: 0px rgb(0, 29, 53);" data-hveid="CAIIAQggEAE" data-sfc-cb="" data-sfc-root="c" data-wiz-uids="yYk5rd_45,yYk5rd_44" jsaction="" jscontroller="HP6Sjf#lcO7sb" jsuid="yYk5rd_43" style="font-family: 'Google Sans', Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 4px 0px 0px; text-decoration: none; border-bottom: 0px rgb(0, 29, 53);"><div data-copy-service-computed-style="font-family: "Google Sans", Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(0, 29, 53);" style="font-family: 'Google Sans', Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(0, 29, 53);"><div class="pHpOfb" data-animation-atomic="" data-copy-service-computed-style="font-family: "Google Sans", Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 1.2px solid rgb(243, 245, 246);" style="font-family: 'Google Sans', Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 1.2px solid rgb(243, 245, 246);"><div class="pCTyYe" data-copy-service-computed-style="font-family: "Google Sans", Arial, sans-serif; font-size: 14px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(0, 29, 53);" dir="ltr" style="font-family: 'Google Sans', Arial, sans-serif; font-size: 14px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(0, 29, 53);"></div></div><div class="LIBz9e" data-animation-atomic="" data-copy-service-computed-style="font-family: "Google Sans", Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 3px 0px 0px; text-decoration: none; border-bottom: 1.2px solid rgb(243, 245, 246);" style="font-family: 'Google Sans', Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 3px 0px 0px; text-decoration: none; border-bottom: 1.2px solid rgb(243, 245, 246);"><div class="P8PNlb" data-copy-service-computed-style="font-family: "Google Sans", Arial, sans-serif; font-size: 12px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(0, 29, 53);" style="font-family: 'Google Sans', Arial, sans-serif; font-size: 12px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(0, 29, 53);">Use code with caution.</div><div data-complete="true" data-copy-service-computed-style="font-family: "Google Sans", Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(0, 29, 53);" data-sfc-cb="" data-sfc-cp="" data-sfc-root="c" data-ved="2ahUKEwiagtGc6PqUAxXMamwGHdqDGR0Qh9gSeggIAggBCCAQAw" jsaction="" jscontroller="cXTEid#e0nEwf" jsuid="yYk5rd_46" style="font-family: 'Google Sans', Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(0, 29, 53);"><button aria-describedby="" aria-label="Copy code text to clipboard." class="FTsWP RmjGdc IsqrXb" data-complete="true" data-copy-service-computed-style="font-family: Arial; font-size: 13.3333px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(42, 49, 60);" data-sfc-cb="KjsqPd=&yYk5rd_46:UEmoBd" data-sfc-cp="" data-sfc-root="c" data-wiz-attrbind="disabled=yYk5rd_47/ggNWmb" style="font-family: Arial; font-size: 13.3333px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(42, 49, 60);"><span class="UTNHae" data-complete="true" data-copy-service-computed-style="font-family: Arial; font-size: 13.3333px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(42, 49, 60);" data-sfc-cb="" data-sfc-root="c" data-wiz-attrbind="class=yYk5rd_49/ggNWmb" style="font-family: Arial; font-size: 13.3333px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(42, 49, 60);"></span><span aria-hidden="true" class="I36Cje" data-copy-service-computed-style="font-family: Arial; font-size: 13.3333px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(42, 49, 60);" style="font-family: Arial; font-size: 13.3333px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(42, 49, 60);"><svg aria-hidden="true" fill="currentColor" height="18px" viewbox="0 -960 960 960" width="18px"><path d="M360-240q-33 0-56.5-23.5T280-320v-480q0-33 23.5-56.5T360-880h360q33 0 56.5 23.5T800-800v480q0 33-23.5 56.5T720-240H360Zm0-80h360v-480H360v480ZM200-80q-33 0-56.5-23.5T120-160v-560h80v560h440v80H200Zm160-240v-480 480Z"></path></svg></span></button><div class="ypuoue" data-copy-service-computed-style="font-family: Arial; font-size: 13.3333px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(42, 49, 60);" style="font-family: Arial; font-size: 13.3333px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(42, 49, 60);">  
</div><button aria-describedby="" aria-label="Copy code text to clipboard." class="FTsWP RmjGdc IsqrXb" data-complete="true" data-copy-service-computed-style="font-family: Arial; font-size: 13.3333px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(42, 49, 60);" data-sfc-cb="KjsqPd=&yYk5rd_46:UEmoBd" data-sfc-cp="" data-sfc-root="c" data-wiz-attrbind="disabled=yYk5rd_47/ggNWmb" id="" style="font-family: Arial; font-size: 13.3333px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(42, 49, 60);"></button></div></div></div></div></div><div class="" data-bfc="" data-copy-service-computed-style="font-family: "Google Sans", Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(10, 10, 10);" data-ved="2ahUKEwiagtGc6PqUAxXMamwGHdqDGR0Qi4wTeggIAggBCCEQAA" id="bkmrk-ensure-your-system%27s" style="font-family: 'Google Sans', Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(10, 10, 10);"><div class="n6owBd awi2gc" data-complete="true" data-copy-service-computed-style="font-family: "Google Sans", Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 12px 0px 16px; text-decoration: none; border-bottom: 0px rgb(10, 10, 10);" data-hveid="CAIIAQghEAE" data-sfc-cb="" data-sfc-cp="" data-sfc-root="c" jsaction="" jscontroller="TDBkbc#Ml18Xb" jsuid="yYk5rd_4a" style="font-family: 'Google Sans', Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 12px 0px 16px; text-decoration: none; border-bottom: 0px rgb(10, 10, 10);">Ensure your system's global mailcap file (`/etc/mailcap`) has an entry handling `text/html`, which is standard across Ubuntu installations. [[1](https://manpages.ubuntu.com/manpages/xenial/man5/muttrc-org.5.html)]</div></div><div class="" data-bfc="" data-copy-service-computed-style="font-family: "Google Sans", Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(10, 10, 10);" data-ved="2ahUKEwiagtGc6PqUAxXMamwGHdqDGR0Qi4wTeggIAggBCCIQAA" id="bkmrk-if-you-plan-to-use-t" style="font-family: 'Google Sans', Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 0px; text-decoration: none; border-bottom: 0px rgb(10, 10, 10);"><div class="n6owBd awi2gc" data-complete="true" data-copy-service-computed-style="font-family: "Google Sans", Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 12px 0px 16px; text-decoration: none; border-bottom: 0px rgb(10, 10, 10);" data-hveid="CAIIAQgiEAE" data-sfc-cb="" data-sfc-cp="" data-sfc-root="c" jsaction="" jscontroller="TDBkbc#Ml18Xb" jsuid="yYk5rd_4i" style="font-family: 'Google Sans', Arial, sans-serif; font-size: 16px; font-weight: 400; margin: 12px 0px 16px; text-decoration: none; border-bottom: 0px rgb(10, 10, 10);">If you plan to use this setup frequently, let me know if you would like to **automate sorting** by thread, or if you need help **extracting attachments** from the mbox file</div></div>