Select default From sender in Gmail

Allows you to preset the default From address in Gmail with a parameter called bu. For example https://mail.google.com/mail/?bu=...

Τι είναι το Select default From sender in Gmail;

Το Select default From sender in Gmail είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Rob W, και η κύρια λειτουργία του είναι "Allows you to preset the default From address in Gmail with a parameter called bu. For example https://mail.google.com/mail/?bu=...".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Select default From sender in Gmail

Λήψη αρχείων επέκτασης Select default From sender in Gmail σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Update (31 March): Works again with new Gmail.

For business users who manage multiple email addresses in a single Gmail account.

This extension allows you to override the default From address in Gmail with a query string parameter called bu.

Here is an example of the extension at work:
https://mail.google.com/mail/[email protected]&view=cm&tf=1&fs=1

In this example, the default from address is companydatatrees.net, but the 'bu' query string parameter specifies companydatatrees.com as the From domain. Therefore, Chrome extension looks for the email that ends in the domain companydatatrees.com and automatically selects it. You may also specify an exact email address in the 'bu' parameter, in case you have multiple emails from the same domain.

It is very helpful for Salesforce users with multiple accounts who need to send emails from addresses. Salesforce only allows integration with one (1) Google Apps Domain. On top of that, Gmail doesn't let you specify the From address. Therefore, you're always stuck sending mail from the same address. The way you work around this limitation is by installing this script and creating a formula field in Salesforce that opens a Gmail send window with the From query string parameter. 
 
The Salesforce formula field should look like this: 

HYPERLINK("https://mail.google.com/mail/?view=cm&fs=1&tf=1&to="& Email &"&shva=1&bu="& Business_Unit_Communicatnig_with__c &"&bcc="& $User.Email2SFDC__c ,"Send Email")                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Select default From sender in Gmail Select default From sender in Gmail
ID lbjlhjpbhnblkbhmdfamebnlaigioipf
Επίσημο URL https://chromewebstore.google.com/detail/select-default-from-sende/lbjlhjpbhnblkbhmdfamebnlaigioipf
Περιγραφή Allows you to preset the default From address in Gmail with a parameter called bu. For example https://mail.google.com/mail/?bu=...
Μέγεθος Αρχείου 36.71 KB
Αριθμός Εγκαταστάσεων 108
Τρέχουσα Έκδοση 1.3
Τελευταία Ενημέρωση 2013-03-31
Ημερομηνία Δημοσίευσης 2013-03-31
Αξιολόγηση 3.00/5 Συνολικά 2 Αξιολογήσεις
Προγραμματιστής Rob W
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
URL της Σελίδας Πολιτικής Απορρήτου https://robwu.nl/privacy/cws
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Select default From sender in Gmail",
    "description": "Allows you to preset the default From address in Gmail with a parameter called bu. For example https:\/\/mail.google.com\/mail\/?bu=...",
    "manifest_version": 2,
    "version": "1.3",
    "content_scripts": [
        {
            "js": [
                "gmail_default_sender.js"
            ],
            "matches": [
                "*:\/\/mail.google.com\/mail\/*bu*"
            ],
            "exclude_matches": [
                "*:\/\/mail.google.com\/mail\/help\/"
            ]
        }
    ],
    "icons": {
        "128": "icon128.png"
    }
}