- {/* To Field */}
-
- To
- setComposeTo(e.target.value)}
- placeholder="recipient@example.com"
- className="w-full mt-1 bg-white border-gray-300 text-gray-900"
- />
-
-
- {/* CC/BCC Toggle Buttons */}
-
- setShowCc(!showCc)}
- >
- {showCc ? 'Hide Cc' : 'Add Cc'}
-
- setShowBcc(!showBcc)}
- >
- {showBcc ? 'Hide Bcc' : 'Add Bcc'}
-
-
-
- {/* CC Field */}
- {showCc && (
-
- Cc
- setComposeCc(e.target.value)}
- placeholder="cc@example.com"
- className="w-full mt-1 bg-white border-gray-300 text-gray-900"
- />
-
- )}
-
- {/* BCC Field */}
- {showBcc && (
-
- Bcc
- setComposeBcc(e.target.value)}
- placeholder="bcc@example.com"
- className="w-full mt-1 bg-white border-gray-300 text-gray-900"
- />
-
- )}
-
- {/* Subject Field */}
-
- Subject
- setComposeSubject(e.target.value)}
- placeholder="Enter subject"
- className="w-full mt-1 bg-white border-gray-300 text-gray-900"
- />
-
-
- {/* Message Body */}
-
- Message
-
-