AndroidアプリケーションからGmailを使用してメールを送信するにはどうすればよいですか?
この例は、AndroidアプリケーションからGmailを使用してメールを送信する方法を示しています。
ステップ1 − Android Studioで新しいプロジェクトを作成し、[ファイル]⇒[新しいプロジェクト]に移動して、新しいプロジェクトを作成するために必要なすべての詳細を入力します。
ステップ2 −次のコードをres / layout/activity_main.xmlに追加します。
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="https://schemas.android.com/apk/res/android" xmlns:tools="https://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" android:padding="4dp" tools:context=".MainActivity" android:orientation="vertical"> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Recipient email!" /> <EditText android:id="@+id/editTextMail" android:layout_width="match_parent" android:layout_height="wrap_content" /> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Subject"/> <EditText android:layout_width="match_parent" android:layout_height="wrap_content" android:id="@+id/editTextSubject"/> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Message"/> <EditText android:layout_width="match_parent" android:layout_height="wrap_content" android:id="@+id/editTextMessage" android:lines="4"/> <Button android:layout_width="match_parent" android:layout_height="wrap_content" android:id="@+id/buttonSend" android:text="Send" /> </LinearLayout>
ステップ3 −次のコードをsrc / MainActivity.java
に追加しますimport android.content.Intent; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; import android.view.View; import android.widget.Button; import android.widget.EditText; public class MainActivity extends AppCompatActivity{ EditText editTextMail, editTextSubject, editTextMessage; Button buttonSend; String email, subject, message; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); editTextMail = findViewById(R.id.editTextMail); editTextSubject = findViewById(R.id.editTextSubject); editTextMessage = findViewById(R.id.editTextMessage); buttonSend = findViewById(R.id.buttonSend); buttonSend.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { getData(); Intent intent = new Intent(Intent.ACTION_SEND); intent.putExtra(Intent.EXTRA_EMAIL, new String(email)); intent.putExtra(Intent.EXTRA_SUBJECT, subject); intent.putExtra(Intent.EXTRA_TEXT, message); intent.setType("message/rfc822"); startActivity(Intent.createChooser(intent, "Select email")); } }); } private void getData() { email = editTextMail.getText().toString(); subject = editTextSubject.getText().toString(); message = editTextMessage.getText().toString(); } }
ステップ4 -次のコードをandroidManifest.xmlに追加します
<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="https://schemas.android.com/apk/res/android" package="app.com.sample"> <application android:allowBackup="true" android:icon="@mipmap/ic_launcher" android:label="@string/app_name" android:roundIcon="@mipmap/ic_launcher_round" android:supportsRtl="true" android:theme="@style/AppTheme"> <activity android:name=".MainActivity"> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> </application> </manifest>
アプリケーションを実行してみましょう。実際のAndroidモバイルデバイスをコンピューターに接続していると思います。 android studioからアプリを実行するには、プロジェクトのアクティビティファイルの1つを開き、ツールバーの[アイコンの実行]をクリックします。オプションとしてモバイルデバイスを選択し、デフォルトの画面を表示するモバイルデバイスを確認します–
-
GoogleスプレッドシートからGmailで一括メールを送信する方法
連絡先のリストに一度に1通の電子メールを送信すると、連絡先をパーソナライズしたい場合、1日の大部分を奪う可能性があります。このタイプのキャンペーンは、時間を無駄にしているだけの場合は追跡する価値がない可能性があります。 GoogleスプレッドシートへのYetAnotherMail Mergeアドオンを使用すると、必要なのは連絡先リスト、Googleスプレッドシート、Gmailだけで、何百ものパーソナライズされたメールを一度に連絡先に送信できます。 さらに別のメールマージをダウンロード さらに別のメールマージ(YAMM)を使用して送信できる最大50の無料メールで、最初のステップはアプリをダウ
-
Gmail と Outlook を使用して暗号化されたメールを送信する方法
セキュリティは、すべての主要な懸念事項の 1 つです。ソーシャル メディアであろうと電子メールであろうと、プライバシーに対する脅威はウェブ上で停滞しています。したがって、電子メールを暗号化して、悪名高いサイバー犯罪者から安全に保つことが重要です。 メールの送信は私たちの通常のタスクであるため、注意を払い、添付ファイルとメールを暗号化しておく必要があります。同じことを行うには、送信するメールが確実に暗号化されるようにする ProtonMail などのアプリを使用してメールを送信するなど、さまざまな方法があります。しかし、Outlook や Gmail で安全なメールを送信する方法を知っています